latex/workbook/example6.tex
author Puneeth Chaganti <punchagan@fossee.in>
Mon, 31 Jan 2011 17:59:35 +0530
changeset 156 8f4806a1a64d
parent 107 80a8b46754f8
permissions -rw-r--r--
vcs: Remove all mention of use of -ve revision numbering. The introduction seems forced. It's a neat trick, but doesn't fit into the flow of things. Now introducing revision numbering with the need to take diffs between particular commits. Also mention -v and -l parameters to the log command.

%hello.tex - First LaTeX document
\documentclass[12pt]{article}

\title{LaTeX}
\author{The FOSSEE Team}
\date{August 2010}

\begin{document}
\maketitle
\tableofcontents

\begin{abstract}
This is a sample document to be used in the STTP course for a quick introduction to \LaTeX
\end{abstract}

\section{Introduction}
LaTeX is a typesetting program used to produce excellently typeset documents.

\section{Structural Elements}
Let us now look at giving a better structure to our document. 

\subsection{documentclass}
The \verb+documentclass+ variable tells \LaTeX, the type of document we wish to prepare. 

\subsection{Sections, Chapters and Parts}
We shall first look at how to divide the document into Sections, Chapters and Parts. 

\subsubsection{Appendices}
I can't tell you how to add an appendix, in the main document. 

\end{document}