3 Logical structure

Logical mark up  

LaTeX provides us with logical mark up, as well as the ability to directly set the appearance.

Logical mark up

\emph{text} {\large text}

Appearance mark up

\textit{text} {\fontsize{12 pt}{14 pt}\selectfont text}

Usually, logical mark up is best when it is available.

Title Page  

First, you need to give the ‘meta-data’:

Then use \maketitle to display the title page.

Sectioning commands  

Lists  

List with bullets, dashes, etc.

  \begin{itemize}  
    \item This is an unordered list  
  \end{itemize}

List with numbered items

  \begin{enumerate}  
    \item This is the first item.  
    \item This will have number 2!  
  \end{enumerate}