summaryrefslogtreecommitdiff
path: root/Latex/Latex3
diff options
context:
space:
mode:
authorHarish Badrinath2012-01-24 15:50:13 +0530
committerHarish Badrinath2012-01-24 15:50:13 +0530
commita5156445125ead612522ad3eddb739c4ed1dfa5a (patch)
tree556005859ba1a16dab205b1d7c8a00da989d1f25 /Latex/Latex3
parent32734b8a299ba0c5b30d1738a98d302a29a99942 (diff)
downloadsdes-stscripts-a5156445125ead612522ad3eddb739c4ed1dfa5a.tar.gz
sdes-stscripts-a5156445125ead612522ad3eddb739c4ed1dfa5a.tar.bz2
sdes-stscripts-a5156445125ead612522ad3eddb739c4ed1dfa5a.zip
Added iitb-logo.png so that we can compile LaTeX slides sucessfully.
Syncing handout content with scripts and slides for LaTex2.
Diffstat (limited to 'Latex/Latex3')
-rw-r--r--Latex/Latex3/latex_basics.tex1
-rw-r--r--Latex/Latex3/latex_basics_and_structure_script.rst12
2 files changed, 12 insertions, 1 deletions
diff --git a/Latex/Latex3/latex_basics.tex b/Latex/Latex3/latex_basics.tex
index a93d2ad..04e7968 100644
--- a/Latex/Latex3/latex_basics.tex
+++ b/Latex/Latex3/latex_basics.tex
@@ -296,6 +296,7 @@ beginning of the document and the appendix at the end.
\frametitle{\typ{Excercise 1: Solution}}
\begin{center}
Note: File needs to be compiled twice
+ TODO: Please uncomment actual example and recompile
\end{center}
{\tiny
\begin{center}
diff --git a/Latex/Latex3/latex_basics_and_structure_script.rst b/Latex/Latex3/latex_basics_and_structure_script.rst
index 1699760..968a4ee 100644
--- a/Latex/Latex3/latex_basics_and_structure_script.rst
+++ b/Latex/Latex3/latex_basics_and_structure_script.rst
@@ -71,8 +71,16 @@ single alpha-numeric character, for example. When done so, the resulting
document could be described as the shortest possible LaTeX input document, that
creates an output file. It consists of 3 LaTeX commands and one line/character
of text.
+
+In our minimal example, document is an environment. Only the text enclosed by
+the begin and end commands is effected by the environment. The part of the file
+before the \begin{document} command is called the preamble, and is used to
+"configure" the LaTeX typesetter and change various parameters for typesetting.
+
This is processed by a TeX processor that generates an output file. Now, we
begin to look into each line in the example in more detail.
+
+
The first line reads
.. L5
@@ -126,7 +134,9 @@ We add the LaTeX commands, that specify the title and the author of the
document. When we compile the document shown to an output file and view it we
notice that output is, as seen no different from not adding the fields of title
and author. We need to add another command to actually show the title author
-and date in the output document. We add the command in the following example.
+and date in the output document. The part of the file before the
+\begin{document} command is called the preamble, and is used to "configure" the
+LaTeX typesetter and change various parameters for typesetting.
.. L10