summaryrefslogtreecommitdiff
path: root/lecture-notes/latex/workbook/example6.tex
diff options
context:
space:
mode:
Diffstat (limited to 'lecture-notes/latex/workbook/example6.tex')
-rw-r--r--lecture-notes/latex/workbook/example6.tex31
1 files changed, 31 insertions, 0 deletions
diff --git a/lecture-notes/latex/workbook/example6.tex b/lecture-notes/latex/workbook/example6.tex
new file mode 100644
index 0000000..828a188
--- /dev/null
+++ b/lecture-notes/latex/workbook/example6.tex
@@ -0,0 +1,31 @@
+%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}