考虑以下投影仪框架
\begin{frame}
\frametitle{Foo Bar}
\includegraphics[scale=0.18]{figures/Fig1.pdf}
\includegraphics[scale=0.18]{figures/Fig2.pdf}
\end{frame}
目前,它们已经布局正如我想要的那样,左边是图1,右边是图2。
我想在它们之间添加一条垂直线,完全不改变人物的位置。
我尝试在两行之间添加以下内容includegraphics
,但它会破坏两个图形的位置。
\rule{1 pt}{300 pt}
达到预期效果的最简单的方法是什么?
答案1
您可以使用\vrule
。
这是一个带有假图像的示例,请将其替换为您的图像。
\documentclass{beamer}
\usepackage{graphicx}
\begin{document}
\begin{frame}
\frametitle{Foo Bar}
\includegraphics[scale=0.18]{example-image-a}
\hspace{5pt}\vrule\hspace{5pt}%
\includegraphics[scale=0.18]{example-image-b}
\end{frame}
\end{document}
输出
如果你想改变规则的粗细,可以使用类似
\vrule width 1pt
而不是简单地\vrule
。