Alinhamento

Por padrão, o LaTeX justifica os seus textos. Mas você pode alinhá-los à esquerda, à direita ou centralizá-los. Para alinhar à esquerda, você pode usar o ambiente flushleft ou o raggedright. Para alinhar à direita, você pode usar o ambiente flushright ou o raggedleft. Para centralizar, você pode usar o ambiente center. O documento abaixo contém texto alinhado em cada um desses ambientes:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lipsum}

\begin{document}
  \section{Texto alinhado com flushleft}
    \begin{flushleft}
      \lipsum[1-2]
    \end{flushleft}

  \section{Texto alinhado com flushright}
    \begin{flushright}
      \lipsum[1-2]
    \end{flushright}

  \section{Texto alinhado com raggedleft}
    \begin{raggedleft}
      \lipsum[1-2]
    \end{raggedleft}

  \section{Texto alinhado com raggedright}
    \begin{raggedright}
      \lipsum[1-2]
    \end{raggedright}

  \section{Texto alinhado com center}
    \begin{center}
      \lipsum[1-2]
    \end{center}
\end{document}