%20%EA%B7%B8%EB%A6%BC%20%EC%82%AC%EC%9D%B4%EC%97%90%20%EC%88%98%ED%8F%89%EC%84%A0%EC%9D%84%20%EC%B6%94%EA%B0%80%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95%EC%9D%80%20%EB%AC%B4%EC%97%87%EC%9E%85%EB%8B%88%EA%B9%8C%3F.png)
답변1
이미지를 그래픽으로 사용할 수 있다고 가정하면 다음 width=
옵션을 사용하여 이미지 크기를 조정할 수 있습니다 \includegraphics
.
또는 테이블을 왼쪽에 추가해야 하는 경우 \scalerel*
이미지 높이를 테이블 크기와 일치하도록 강제로 사용할 수 있습니다.
\documentclass{article}
\usepackage{graphicx,caption,scalerel}
\begin{document}
\begin{figure}[p]
\hrulefill\vspace{15pt}\par
\setbox0=\hbox{%
\begin{tabular}{|l|}
\hline
Go\\\hline
Clear\\\hline
3dProject\\\hline
X-Rotate\\\hline
Y-Rotate\\\hline
Z-Rotate\\\hline
EraseRota\\\hline
Body-Tog\\\hline
RotAx-Tog\\\hline
Flash-Tog\\\hline
Persp-Tog\\\hline
NUMERICS\\\hline
UTILITIES\\\hline
Quit\\\hline
\end{tabular}}
\centerline{\copy0\scalerel*{\includegraphics{example-image-a}}{\copy0}}
\captionof{figure}{Here is my caption}
\medskip
\hrulefill\par
\vspace{15pt}
\centerline{\includegraphics[width=.7\textwidth]{example-image-b}}
\captionof{figure}{Here is my other caption}
\medskip
\hrulefill
\end{figure}
\end{document}