Eric Partlo added The_Not_So_Short_Introduction__.html  over 8 years ago

Commit id: 49ba59b282b09108056916d98e6590aec8855f7c

deletions | additions      

         

The Not So Short Introduction to LaTeX2

Chapter 1 - Things You Need to Know
\documentclass{article}
\begin{document}
Small is beautiful.
\end{document}
latex foo.tex
dvipdf foo.dvi
Chapter 2 - Typesetting Text
break a line: \\ or \newline
start a new line without starting a new paragraph \\*
\newpage
\linebreak[n], \nolinebreak[n], \pagebreak[n], \nopagebreak[n]
For the article class:
\section{}
\subsection{}
\subsubsection{}
\paragraph{}
\subparagraph{}
\part{}
\chapter{}
\tableofcontents{}
\footnote{footnote text}
Chapter 3 - Typesetting Mathematical Formulae