如何在(单个或多个)图形之间添加水平线?

如何在(单个或多个)图形之间添加水平线?

我不明白如何在图形上方和下方插入这些线,以及如何调整图形的大小?

这一页

答案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}

在此处输入图片描述

相关内容