
###### Investigación en AAAA
Título--------: Sobre el bla bla.
Vocero----: ……………………………………….
Sala------: Zoom
¿Cómo podemos hacer algo como esto en látex? (Quiero omitir la cadena "----" antes de: pero: para alinear)
Respuesta1
Puedes utilizar cajas:
\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}
Un resultado similar es posible usando a tabular
:
\documentclass{article}
\begin{document}
\noindent
\begin{tabular}{@{} l @{ : } l }
Title & On the blah blah \\
Speaker & Random Randofsky \\
Room & Zoom
\end{tabular}
\end{document}