I'd like to enumerate my graphs the way it is in the picture attached, but i just can't figure out how to get the numbers at the same place for each graph. Can you help me?
Asked
Active
Viewed 205 times
1
1 Answers
2
like this?
with use of floatrow and subfig packages:
\documentclass{article}
\usepackage{floatrow}
\usepackage{graphicx}
\usepackage[label font=bf,labelformat=simple]{subfig}
\usepackage{caption}
\floatsetup[figure]{style=plain,subcapbesideposition=top}
%\usepackage[margin=30mm]{geometry}
% Verweise werden im PDF zu Hyperlinks
\begin{document}
%---------------------------------------------------------------%
\begin{figure}
\renewcommand\thesubfigure{\arabic{subfigure}}
\centering
\sidesubfloat[]{\includegraphics[width=0.4\textwidth]{example-image}\label{fig:a}}
\hfil
\sidesubfloat[]{\includegraphics[width=0.4\textwidth]{example-image}\label{fig:b}}
\medskip
\sidesubfloat[]{\includegraphics[width=0.4\textwidth]{example-image}\label{fig:c}}
\hfil
\sidesubfloat[]{\includegraphics[width=0.4\textwidth]{example-image}\label{fig:d}}
\medskip
\sidesubfloat[]{\includegraphics[width=0.4\textwidth]{example-image}\label{fig:e}}
\hfil
\sidesubfloat[]{\includegraphics[width=0.4\textwidth]{example-image}\label{fig:f}}
\medskip
\sidesubfloat[]{\includegraphics[width=0.4\textwidth]{example-image}\label{fig:g}}
\hfil
\sidesubfloat[]{\includegraphics[width=0.4\textwidth]{example-image}\label{fig:h}}
\end{figure}
\end{document}
Zarko
- 296,517


subcaptionpackage. – samcarter_is_at_topanswers.xyz Oct 20 '17 at 12:13