
세 개의 도형을 한 행에 배치하고 있는데, 명확하게 표시하려면 너비가 충분하지 않습니다(충분히 큽니다). 예전에는 그림을 수동으로 이동하는 데 사용했는데 hspace
이번에는 작동하지 않습니다. (첫 번째 행에만 영향을 줍니다.) 전체 그림을 어떻게 이동할 수 있나요? 이 페이지의 특정 거리에 대해 전체 그림을 왼쪽으로 이동해야 한다고 생각합니다.
이것은 MWE가 문제를 설명하는 것 중 하나입니다.
\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}
답변1
\hspace
빈 줄을 사용하거나 \par
대신 사용하는 경우 두 번째 및 세 번째 행에도 추가할 수 있습니다 \\
. 즉, 다음을 변경합니다.
\vspace{-10pt}
\\
~에 의해
\vspace{-10pt}
\hspace{-2cm}
또는
\vspace{-10pt}\par
\hspace{-2cm}