diff options
author | Harish Badrinath | 2012-02-27 12:27:10 +0530 |
---|---|---|
committer | Harish Badrinath | 2012-02-27 12:27:10 +0530 |
commit | 9aa3dead6022749ef41f97bfb0d4cec2dd6ab9f5 (patch) | |
tree | d82c4863cd44c3dfdccd394feb2707ec91f0b049 /Latex | |
parent | 67b3e605ff0cf8cf0f83881d69891d83b27048c9 (diff) | |
download | sdes-stscripts-9aa3dead6022749ef41f97bfb0d4cec2dd6ab9f5.tar.gz sdes-stscripts-9aa3dead6022749ef41f97bfb0d4cec2dd6ab9f5.tar.bz2 sdes-stscripts-9aa3dead6022749ef41f97bfb0d4cec2dd6ab9f5.zip |
Made script more verbose for "one line slides", as per feedback given by kiran.
Diffstat (limited to 'Latex')
-rw-r--r-- | Latex/Latex3/latex_basics_and_structure_script.rst | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Latex/Latex3/latex_basics_and_structure_script.rst b/Latex/Latex3/latex_basics_and_structure_script.rst index 3e2fa80..9d8f6c6 100644 --- a/Latex/Latex3/latex_basics_and_structure_script.rst +++ b/Latex/Latex3/latex_basics_and_structure_script.rst @@ -91,7 +91,7 @@ The first line reads .. R5 -which more generally can be written as +documentclass article, which more generally can be written as .. L6 @@ -99,6 +99,7 @@ which more generally can be written as .. R6 +documentclass parameters DocumentClass. Where documentclass is a LaTeX command. Parameters specify if you want to use a non default font size, for example. More specifically the parameters can be used to alter things like font size of @@ -129,10 +130,11 @@ with a square in the margin .. R8 -This statement can be used optionally and is used to include packages, which are -used to extend the LaTeX's capabilities. There are a number of packages that are -included by default with LaTeX2 base distribution. You can use the texdoc -command for accessing package documentation. +The usepackage command is called with package name argument, prepended with +optional parameters. It is included optionally in a LaTeX document, to include +packages, which further extend the LaTeX's capabilities. There are a number of +packages that are included by default with LaTeX2 base distribution. You can use +the texdoc command for accessing package documentation. .. L9 |