###### YYYY 中的研究
标题--------:关于 bla bla。
扬声器 - - : ………………………………………。
房间------:Zoom
我们怎样才能在乳胶中做出这样的东西?(我想省略:之前的字符串“----”,但:要对齐)
答案1
您可以使用盒子:
\documentclass{article}
\newlength{\presentationtitles}
\setlength{\presentationtitles}{4em}
\begin{document}
\noindent\makebox[\presentationtitles][l]{Title}: On the blah blah
\noindent\makebox[\presentationtitles][l]{Speaker}: Random Randofsky
\noindent\makebox[\presentationtitles][l]{Room}: Zoom
\end{document}
使用以下方法可以得到类似的结果tabular
:
\documentclass{article}
\begin{document}
\noindent
\begin{tabular}{@{} l @{ : } l }
Title & On the blah blah \\
Speaker & Random Randofsky \\
Room & Zoom
\end{tabular}
\end{document}