
Estoy poniendo tres figuras en una fila y el ancho no es suficiente si quiero mostrarlas claramente (lo suficientemente grandes). Solía usar hspace
cambiar manualmente la figura, pero esta vez no funciona. (Solo afecta a la primera fila). ¿Cómo podría desplazar toda la figura? Creo que necesito desplazar hacia la izquierda toda la figura una cierta distancia para esta página.
Este es un MWE que ilustra el problema:
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{subfig}
\begin{document}
\newcommand{\IDCTFigureHeight}{2.8}
\begin{figure}[p]
\vspace{-10pt}
\subfloat[v1 with buffer size 16]{\includegraphics[width=0.45\textwidth,height=\IDCTFigureHeight in]{images/local/v1_16.png}}
\subfloat[v1 with buffer size 100]{\includegraphics[width=0.45\textwidth,height=\IDCTFigureHeight in]{images/local/v1_100.png}}
\subfloat[v1 with buffer size 200]{\includegraphics[width=0.45\textwidth,height=\IDCTFigureHeight in]{images/local/v1_200.png}}
\vspace{-10pt}
\\
\subfloat[v2 with buffer size 16]{\includegraphics[width=0.45\textwidth,height=\IDCTFigureHeight in]{images/local/v2_16.png}}
\subfloat[v2 with buffer size 100]{\includegraphics[width=0.45\textwidth,height=\IDCTFigureHeight in]{images/local/v2_100.png}}
\subfloat[v2 with buffer size 200]{\includegraphics[width=0.45\textwidth,height=\IDCTFigureHeight in]{images/local/v2_200.png}}
\vspace{-10pt}
\\
\subfloat[v3 with buffer size 16]{\includegraphics[width=0.45\textwidth,height=\IDCTFigureHeight in]{images/local/v3_16.png}}
\subfloat[v3 with buffer size 100]{\includegraphics[width=0.45\textwidth,height=\IDCTFigureHeight in]{images/local/v3_100.png}}
\subfloat[v3 with buffer size 200]{\includegraphics[width=0.45\textwidth,height=\IDCTFigureHeight in]{images/local/v3_200.png}}
\caption{destination-fifo with different buffer size.}
\end{figure}
\end{document}
Respuesta1
También puedes agregar \hspace
a la segunda y tercera filas si usas una línea en blanco o \par
en lugar de \\
. Es decir, cambiar:
\vspace{-10pt}
\\
por
\vspace{-10pt}
\hspace{-2cm}
o
\vspace{-10pt}\par
\hspace{-2cm}