Collection of figure-related packages and commands for [[- LaTeX -|LaTeX]].
- https://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions
---
#### Subfigures
Requires the subfigure package
```latex
\usepackage{subfigure}
```
```latex
\begin{figure}
\centering
\begin{subfigure}
\centering
% Answer: [trim={left bottom right top},clip]
\includegraphics[trim={2cm 4cm 2cm 4cm}, clip, width=0.8\textwidth]{path1}
\caption{caption1}
\label{label1}
\end{subfigure}
\begin{subfigure}
\centering
% Answer: [trim={left bottom right top},clip]
\includegraphics[trim={2cm 4cm 2cm 4cm}, clip, width=0.8\textwidth]{path2}
\caption{caption2}
\label{label2}
\end{subfigure}
\end{figure}
```
- Trim the image using the `graphicx` package and by activating cropping