我有以下两条信息,我想在 Beamer 幻灯片中并排显示。我想将这两条信息放在一个两列表格的两个单元格中。有什么好方法吗?逐字环境适合这样做吗?列表环境会更好吗?
SELECTION test1
JET_N 25000 >= 1
JET_N 25000 >= 2
JET_N 25000 >= 3
JET_N 25000 >= 4
#MV1_N 0.5 >= 1
#TEST test/test_test.config
#PRINT
SAVE
SELECTION test2
JET_N 25000 >= 1
JET_N 25000 >= 2
JET_N 25000 >= 3
JET_N 25000 >= 4
#MV1_N 0.5 >= 1
#TEST test/test_test.config
#PRINT
SAVE
答案1
beamer
有columns
环境,我认为使用它很有意义。请注意,您需要选项[fragile]
才能frame
使用verbatim
等。
\documentclass{beamer}
\begin{document}
\begin{frame}[fragile]
\begin{columns}[t]
\column{0.5\textwidth}
\begin{verbatim}
SELECTION test1
JET_N 25000 >= 1
JET_N 25000 >= 2
JET_N 25000 >= 3
JET_N 25000 >= 4
#MV1_N 0.5 >= 1
#TEST test/test_test.config
#PRINT
SAVE
\end{verbatim}
\column{0.5\textwidth}
\begin{verbatim}
SELECTION test2
JET_N 25000 >= 1
JET_N 25000 >= 2
JET_N 25000 >= 3
JET_N 25000 >= 4
#MV1_N 0.5 >= 1
#TEST test/test_test.config
#PRINT
SAVE
\end{verbatim}
\end{columns}
\end{frame}
\end{document}