LaTeX- Basics
LaTeX ~ An high-quality typesetting package
BODY STRUCTURE
Document
text is started by \begin{document} and
ended with \end{document} containing
the body of the document.
oExample:
\documentstyle{report}
\begin{document}
Welcome
\end{document}
\end{document}
Producing a chapter title
o\chapter{name}
o\section{name}
o\section*{A
Lovely Day}
*
Prevents automatic numbering of section
or chapter
oTo add a foot note:
\footnote{ text }
Post a Comment