Latex Text Block Formatting

Asked

Viewed 1,247 times

3

Good afternoon! I am trying unsuccessfully to put this block of text in this photo formatting:

Figura 01. Formatação desejada.

How do I do it in Latex?

Thanks for your help.

PS.: I’m using Texstudio to edit.

  • 1

    Are you using any configuration packages? I’m not a big Latex user, so it’s hard for me to give an answer, but when I create a Latex document I use a file suite that already sets everything up according to ABNT standards. If that’s your intention, I think you can look for abntex.

  • I’m not. The article has to follow the standard of the university. One or the other element uses the ABNT, and it is even quiet to set up. The problem is this alignment is getting on my nerves.

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 arrived:

\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 to smarter solutions.

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}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.