Latex Text Block Formatting

3

Good afternoon! I'm trying, unsuccessfully, to put this block of text in this photo format:

How do I do this in Latex?

Thanks in advance for the help.

PS: I'm using TeXstudio to edit.

    
asked by anonymous 29.07.2015 / 17:59

2 answers

2

There must be a clever way to do this, but the solution I found served my purpose. This is the product I got:

\begin{flushleft}
\hspace*{<distância desejada, com a unidade definida ex: 8cm}
texto texto texto texto texto\
\hspace*{<distância>}
texto texto texto texto texto\
\hspace*{<distância>}
texto texto texto texto texto\
\end{flushleft}

Open for smarter solutions.

    
30.07.2015 / 04:17
0

A more consistent solution would be:

\thispagestyle{empty} % Numeração não deve aparecer na página de rosto.

\begin{center}
\textbf{\large TÍTULO:SUBTÍTULO}
\end{center}
\par
\vspace{7em}

\hspace*{8cm}\parbox{8.5cm}{{Artigo apresentado ao curso de graduação em ... da Universidade ... como requisito parcial para obtenção do título de ... em .... % ajuste a largura do \parbox de acordo com o tamanho de sua margem
\[1em]
Orientador: x.
\[1em]
Co-orientador: x }}

\par
\vspace{13em}
\begin{center}
\textbf{\large Brasília}\
\textbf{\large Ano}
\end{center}
    
18.11.2015 / 16:15