
###### Pesquisa em AAAA
Título --------: No bla bla.
Palestrante----: ……………………………………….
Sala------: Zoom
Como podemos fazer algo assim em látex? (Quero omitir a string "----" antes: mas o: deve ser alinhado)
Responder1
Você pode usar caixas:
\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}
Um resultado semelhante é possível usando tabular
:
\documentclass{article}
\begin{document}
\noindent
\begin{tabular}{@{} l @{ : } l }
Title & On the blah blah \\
Speaker & Random Randofsky \\
Room & Zoom
\end{tabular}
\end{document}