SlideShare ist ein Scribd-Unternehmen logo
1 von 14
Downloaden Sie, um offline zu lesen
Indian TEX Users Group
: http://www.river-valley.com/tug

Table of Contents
Index

16

Glossary

Title Page

A
On-line Tutorial on LTEX
The Tutorial Team
Indian TEX Users Group,  Buildings, Cotton Hills
Trivandrum 695014, 
2000
Prof. (Dr.) K. S. S. Nambooripad, Director, Center for Mathematical Sciences, Trivandrum, (Editor); Dr. E. Krishnan, Reader
in Mathematics, University College, Trivandrum; Mohit Agarwal, Department of Aerospace Engineering, Indian Institute of
Science, Bangalore; T. Rishi, Focal Image (India) Pvt. Ltd., Trivandrum; L. A. Ajith, Focal Image (India) Pvt. Ltd.,
Trivandrum; A. M. Shan, Focal Image (India) Pvt. Ltd., Trivandrum; C. V. Radhakrishnan, River Valley Technologies,
Software Technology Park, Trivandrum constitute the Tutorial team

A
A
This document is generated from LTEX sources compiled with pdfLTEX v. 14e in an INTEL
Pentium III 700 MHz system running Linux kernel version 2.2.14-12. The packages used
are hyperref.sty and pdfscreen.sty

A
c 2000, Indian TEX Users Group. This document may be distributed under the terms of the LTEX
A
Project Public License, as described in lppl.txt in the base LTEX distribution, either version 1.0
or, at your option, any later version

Page 1 of 14

Go Back

Full Screen

Close

Quit
16 Table of Contents, Index and Glossary
Table of Contents
Index
Glossary

16.1.

Table of Contents
A table of contents is a special list which contains the section numbers and corresponding
headings as given in the standard form of the sectioning commands, together with the page
numbers on which they begin. Similar lists exist containing reference information about the
floating elements in a document, namely, the list of tables and list of figures. The structure of
these lists is simpler, since their contents, the captions of the floating elements, are all on the
same level.
A
A
Standard LTEX can automatically create these three contents lists. By default, LTEX enters text
generated by one of the arguments of the sectioning commands into the .toc file. Similarly,
A
LTEX maintains two more files, one for the list of figures (.lof) and one for the list of tables
(.lot), which contain the text specified as the argument of the caption command for figures
and tables.

tableofcontents produces a table of contents. listoffigures and listoftables produce

a list of figures and list of tables respectively. These lists are printed at the point where these
A
commands are issued. Occasionally, you may find that you don’t like the way LTEX prints a
table of contents or a list of figures or tables. You can fine-tune an individual entry by using
the optional arguments to the sectioning command or caption command that generates it.
Formatting commands can also be introduced with the addtocontents. If all else fails, you
can edit the .toc, lof, lot files yourself. Edit these files only when preparing the final version
of your document, and use a nofiles command to suppress the writing of new versions of the
files.

Title Page

Page 2 of 14

Go Back

Full Screen

Close

Quit
16.1.1.

Additional entries
A
The *-form sectioning commands are not entered automatically in the table of contents. LTEX
offers two commands to insert such information directly into a contents file:

addtocontents{file}{text}

addcontentsline{file}{type}{text}

Table of Contents
Index
Glossary

file

The extension of the contents file, usually toc, lof or lot.

type

The type of the entry. For the toc file the type is normally the same as the
heading according to whose format an entry must be typeset. For the lof or lot
files, figure or table is specified.

text

A
The actual information to be written to the file mentioned. LTEX commands
should be protected by protect to delay expansion

Title Page

The addtocontents command does not contain a type parameter and is intended to enter userspecific formatting information. For example, if you want to generate additional spacing in the
middle of a table of contents, the following command can be issued:
Page 3 of 14

addtocontents{toc}{protectvspace{2ex}}
Go Back

The addcontentsline instruction is usually invoked automatically by the document sectioning commands, or by the caption commands. If the entry contains numbered text, then
numberline must be used to separate the section number (number) from the rest of the text
for the entry (heading) in the text parameter:
protectnumberline{number}heading

Full Screen

Close

Quit
documentclass{article}
defbibTeX{textsc{bib}TeX}
begin{document}
Table of Contents

title{LaTeX{} Guide}
author{TUG India}
date{}

Index
Glossary

maketitle
tableofcontents

Title Page

addtocontents{toc}{protectrule{textwidth}{.2pt}par}
section{Moving Information Around}
verb+tableofcontents+ command produces table of contents.......
section{Bibliography and Citation}
A citation is a cross-reference to another publication, such......
subsection{Using bibTeX}
bibTeX is a separate program that produces the source list ......
Page 4 of 14

subsection{Doing it yourself}
A source list is created with the thebibliography ......
addcontentsline{toc}{section}{numberline{}Splitting Your emph{Input}}
section*{Splitting Your Input}
addtocontents{toc}{noindentprotectrule{textwidth}{.2pt}par}

Go Back

Full Screen

A large document requires a lot of input. Rather than .......
end{document}
Close

Figure 16.1: Input file contains tableofcontents command.
Quit
'
rule {textwidth }{.2pt}par
contentsline {section}{numberline
{1}Moving Information Around}{1}
contentsline {section}{numberline
{2}Bibliography and Citation}{1}
contentsline {subsection}{numberline
{2.1}Using textsc {bib}TeX}{1}
contentsline {subsection}{numberline
{2.2}Doing it yourself}{1}
contentsline {section}{hbox
to@tempdima {hfil }
Splitting Your emph {Input}}{1}
noindent rule {textwidth }{.2pt}par

&

$
A
L TEX Guide
TUG India

Contents
1 Moving Information Around

1

2 Bibliography and Citation
2.1 Using bibTEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
2.2 Doing it yourself . . . . . . . . . . . . . . . . . . . . . . . . . . . .

1

Splitting Your Input

1

Table of Contents

1
1

Index

1

Glossary

Moving Information Around

tableofcontents command produces table of contents. Mainly it does ......

2

Bibliography and Citation

Title Page

A citation is a cross-reference to another publication, such as a ......

% bibTEX
2.1 Using

bibTEX is a separate program that produces the source list for a ......

2.2

Doing it yourself

A source list is created with the thebibliography environment, which ......

Splitting Your Input
A large document requires a lot of input. Rather than putting the .......

Figure 16.2: Output .toc file and .dvi
Page 5 of 14

For example, a caption command inside a figure environment saves the text annotating the
figure as follows:

Go Back

addcontentsline{lof}{figure}{protectnumberline{thefigure}captioned text}
Full Screen

Sometimes addcontentsline is used in the source to complement the actions of standard
A
LTEX. For instance, in the case of the starred form of the section commands, no information is written to the .toc file. So if you do not want a heading number (starred form) but an
entry in the .toc file you can write something like:

Close

Quit
chapter*{Forward}
addcontentsline{toc}{chapter}{numberline{}Forward}

This produces an indented “chapter” entry in the table of contents, leaving the space where the
chapter number would go free. Omitting the numberline command would typeset the word
“Forward” flush left instead.

Table of Contents
Index
Glossary

16.1.2.

Typesetting a Contents List
As discussed above, contents lists consists of entries of different types, corresponding to the
structural units that they represent. Apart from these standard entries, these lists may contain
any commands. A standard entry is specified by the command:

Title Page

contentsline{type}{text}{page}

type

type of the entry, e.g. section, or figure.

text

actual text as specified in the argument of the sectioning or caption commands.

page

pagenumber.

Page 6 of 14

Note that section numbers are entered as a parameter of the numberline command to allow
formatting with the proper indentation. It is also possible for the user to create a table of
contents by hand with the help of the command contentsline. For example:
contentsline {section}
{numberline {2.4}Structure of the Table of Contents}{31}

Go Back

Full Screen

Close

Quit
A
To format an entry in the table of contents files, standard LTEX makes use of the following
command:

@dottedtocline{level}{indent}{numwidth}{text}{page}

Table of Contents
Index

The last two parameters coincide with those of contentsline, since the latter usually invokes
@dottedtocline command. The other parameters are the following:
level

The nesting level of an entry. This parameter allows the user to control how
many nesting levels will be displayed. Levels greater than the value of counter
tocdepth will not appear in the table of contents.

indent

Glossary

This is total indentation from the left margin.

Title Page

numwidth The width of the box that contains the number if text has a numberline command.
This is also the amount of extra indentation added to the second and later lines of
a multiple line entry.
Additionally, the command @dottedtocline uses the following formatting parameters, which
specify the visual appearance of all entries:
@pnumwidth The width of the box in which the page number is set.
@tocmarg
@dotsep

The indentation of the right margin for all but the last line of multiple line
entries. Dimension, but changed with renewcommand.
The separation between dots, in mu (math units). It is a pure number (like
1.7 or 2). By making this number large enough you can get rid of the dots
altogether. Changed with renewcommand as well.

Page 7 of 14

Go Back

Full Screen

Close

Quit
16.1.3.

Multiple Tables of Contents
The minitoc package, initially written by Nigel Ward and Dan Jurafsky and completely redesigned by Jean-Pierre Drucbert, creates a mini-table of contents (a “minitoc”) at the beginning
of each chapter when you use the book or report classes.
The mini-table of contents will appear at the beginning of a chapter, after the chapter command. The parameters that govern the use of this package are discussed below:

Table of Contents
Index
Glossary

Table 16.1: Summary of the minitoc parameters
dominitoc
faketableofcontents
minitoc
minitocdepth
mtcindent
mtcfont

must be put just in front of tableofcontents, to initialize the minitoc system (Mandatory).
this command replaces tableofcontents when you want minitocs
but not table of contents.
this command must be put right after each chapter command
where a minitoc is desired.
A
a LTEX counter that indicates how many levels of headings will be
displayed in the minitoc (default value is 2).
the length of the left/right indentation of the minitoc (default value
is 24pt).
command defining the font that is used for the minitoc entries (The
default definition is a small roman font).

Title Page

Page 8 of 14

Go Back

For each mini-table, an auxiliary file with extension .mtc<N> where <N> is the chapter number,
will be created.
By default, these mini-tables contain only references to sections and subsections. The minitocdepth
counter, similar to tocdepth, allows the user to modify this behaviour.

Full Screen

Close

As the minitoc takes up room on the first page(s) of a chapter, it will alter the page numberQuit
ing. Therefore, three runs normally are needed to get correct information in the mini-table of
contents.
To turn off the minitoc commands, merely replace the package minitoc with
minitocoff on your usepackage command. This assures that all minitoc commands will
be ignored.
Table of Contents
Index
Glossary

16.2.

Index
Title Page

To find a topic of interest in a large document, book, or reference work, you usually turn to the
table of contents or, more often, to the index. Therefore, an index is a very important part of a
document, and most users’ entry point to a source of information is precisely through a pointer
in the index. The most generally used index preparation program is MakeIndex
A
Each index command causes LTEX to write an entry in the .idx file. This command writes
the text given as an argument, in the .idx file. This .idx will be generated only if we give
makeindex command in the preamble otherwise it will produce nothing.
Page 9 of 14

index{index entry}
Go Back

To generate Index follow the procedure given below:
(1) Tag the words inside the document, which needs to come as index, as an argument of
index command.
(2) Include the makeidx package with an usepackage command and put makeindex commad at the preamble.
(3) Put a printindex command where the index is to appear, normally before end{document}
command.

Full Screen

Close

Quit
A
(4) LTEX file. Then a raw index (file.idx) will be generated.
(5) Then Run makeindex. (makeindex file.idx or makeindex file). Then two more files will
be generated, file.ind which contains the index entries and file.ilg, a transcript file.
A
(6) Then again run LTEX. Now you can see in the dvi that the Index has been generated in a
new page.
Table of Contents

Page vi:
Page 5:
Page 6:
Page 7:
Page 11:
Page 17:
Page 26:
Page 32:

index{animal}
index{animal}
index{animal}
index{animal}
index{animalism|see{animal}}
index{animal@emph{animal}}
index{mammal|textbf}
index{animal!mammal!cat}
index{animal!insect}

indexentry{animal}{vi}
indexentry{animal}{5}
indexentry{animal}{6}
indexentry{animal}{7}
indexentry{animalism|seeanimal}{11}
indexentry{animal@emph{animal}}{17}
indexentry{mammal|textbf}{17}
indexentry{animal!mammal!cat}{26}
indexentry{animal!insect}{32}

(a) The input file

begin{theindex}
item animal, vi, 5–7
subitem insect, 32
subitem mammal
subsubitem cat, 26
item emph{animal}, 17
item animalism, see{animal}{11}
indexspace
item mammal, textbf{17}
end{theindex}
(c) The .ind file

Index
Glossary

Title Page

(b) The .idx file
animal, vi 5–7
insect, 32
mammal
cat, 26
animal, 17
animalism, see animal
mammal, 17

Page 10 of 14

Go Back

Full Screen

(d) The typeset output
Close

Figure 16.3: Stepwise development of index processing
Quit
16.2.1.

Simple Index Entries
A
Each index command causes LTEX to write an entry in the .idx file. For example

index{index entry}
Table of Contents
Index
Glossary

16.2.2.

Sub Entries
A
Up to three levels of index entries (main, sub, and subsub entries) are available with LTEXMakeIndex. To produce such entries, the argument of the index command should contain both
the main and subentries, separated by ! character.

Title Page

Page 5: index{dimensions!rule!width}
This will come as
Page 11 of 14

dimensions
rule
width, 5

Go Back

Full Screen

16.2.3.

Page Ranges and Cross-References
You can specify a page range by putting the command index{...|(} at the beginning of the range
and index{...|)} at the end of the range. Page ranges should span a homogeneous numbering
scheme (e.g., roman and arabic page numbers cannot fall within the same range).

Close

Quit
You can also generate cross-reference index entries without page numbers by using the see encapsulator. Since “see” entry does not print any page number, the commands index{...|see{...}}
can be placed anywhere in the input file after the begin{document} command. For practical
reasons, it is convenient to group all such cross-referencing commands in one place.
fonts
Computer Modern, 13–25
math, see math, fonts
PostScript, 5
table, ii–xi, 14

Page ii:
Page xi:
Page 5:
Page 13
Page 14:
Page 17:
Page 21:
Page 25:

index{table|(}
index{table|)}
index{fonts!PostScript|(}
index{fonts!PostScript|)}
index{fonts!Computer Modern |(}
index{table}
index{fonts!math|see{math, fonts}}
index{fonts!Computer Modern}
index{fonts!Computer Modern|)}

Table of Contents
Index
Glossary

Title Page

Figure 16.4: Page range and cross-referencing

16.2.4.

Controlling the Presentation Form
Sometimes you may want to sort an entry according to a key, while using a different visual
representation for the typesetting, such as Greek letters, mathematical symbols, or specific typographic forms. This function is available with the syntax: key@visual, where key determines
the alphabetical position and the string value produces the typeset text of the entry.
For some, indexes, certain page numbers should be formatted specially, with an italic page
number (for example) indicating a primary reference, and an n after a page number denoting
that the item appears in a footnote on that page. MakeIndex allows you to format an individual page number in any way you want by using the encapsulator syntax specified | character. What follows the | sign will “encapsulate” or enclose the page number associated with
the index entry. For instance, the command index{keyword|xxx} will produce a page number of the form xxx{n}, where n is the page number in question. Similarly, the command
index{keyword|(xxx)} will generate a page range of the form xxx{n-m}

Page 12 of 14

Go Back

Full Screen

Close

Quit
newcommand{nn}[1]{#1n}
delta, 14
δ, 23
delta wing, 16
flower, 19
ninety, 26
xc, 28
ninety-five, 5
tabbing, 7, 34–37
tabular, ii, 21, 22n
tabular environment, 23

Page ii:
Page 5:
Page 7:
Page 14:
Page 16:
Page 19:
Page 21:
Page 22:
Page 23:
Page 26:
Page 28:
Page 34:
Page 36:

index{tabular|textbf}
index{ninety-five}
index{tabbing}
index{delta}
index{delta wing}
index{flower@textbf{flower}}
index{tabular|textit}
index{tabular|nn}
index{delta@δ}
index{tabular@texttt{tabular} environment}
index{ninety}
index{ninety@xc}
index{tabbing|(textit}
index{tabbing|)}

Table of Contents
Index
Glossary

Title Page

Figure 16.5: Controlling the presentation form

16.2.5.

Printing those Special Characters
To typeset one of the characters having a special meaning to MakeIndex (!, ”, @, or |) in the index, precede it with a ” character. More precisely, any character is said to be quoted if it follows
an unquoted ” that is not part of a " command. The latter case is for allowing umlaut characters. Quoted !, @, ”, or | characters are treated like ordinary characters, losing their special
meaning. The ” preceding a quoted character is deleted before the entries are alphabetised.
@ sign, 2
|, see vertical bar
exclamation (!), 4
Ah!, 5
M¨ dchen, 3
a
quote (”), 1
” sign, 1

Page 1:
Page 2:
Page 3:
Page 4:
Page 5:

index{bar@texttt{”|}|see{vertical bar}}
index{quote (verb+””+)}
index{quote@texttt{””} sign}
index{atsign@texttt{”@} sign}
index{maedchen@M”{a}dchen}
index{exclamation (”!)}
index{exclamation (”!)!Ah”!}

16.6 Printing those special characters

Page 13 of 14

Go Back

Full Screen

Close

Quit
16.3.

Glossary
A ‘glossary’ is a special index of terms and phrases alphabetically ordered together with their
A
explanations. To help set up a glossary, LTEX offers the commands
Table of Contents

makeglossary
in the preamble and
glossary{glossary-entry}
in the text part

which function just like the commands for making up an index register. The entries are written
to a file with extension .glo after the command makeglossary has been given in the preamble.
The form of these file entries from each glossary command is

Index
Glossary

Title Page

glossaryentry{glossary-entry}{pagenumber}

The information the .glo file can be used to establish a glossary. However, there is no equivalent to the theindex environment for a glossary, but a recommended structure is the description
environment or a special list environment.

Page 14 of 14

Go Back

Full Screen

Close

Quit

Weitere ähnliche Inhalte

Was ist angesagt?

LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with TexstudioHossein Babashah
 
Latex for beginner
Latex for beginnerLatex for beginner
Latex for beginnermahindrupali
 
latex-workshop Dr: Mohamed A. Alrshah
latex-workshop Dr: Mohamed A. Alrshahlatex-workshop Dr: Mohamed A. Alrshah
latex-workshop Dr: Mohamed A. AlrshahAbdulazim N.Elaati
 
LaTeX Part 1
LaTeX Part 1LaTeX Part 1
LaTeX Part 1awv7t
 
LaTeX Part 2
LaTeX Part 2LaTeX Part 2
LaTeX Part 2awv7t
 
Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesMohamed Alrshah
 
Tutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting DocumentsTutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting DocumentsDr. Mehar Chand
 
SAP ABAP Practice exam
SAP ABAP Practice examSAP ABAP Practice exam
SAP ABAP Practice examIT LearnMore
 
scientific writing 01 - latex
scientific writing   01 - latexscientific writing   01 - latex
scientific writing 01 - latexLeo Chen
 
LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners Tilak Devaraj
 
The LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: InvocationThe LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: InvocationSuddhasheel GHOSH, PhD
 

Was ist angesagt? (20)

LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with Texstudio
 
Latex for beginner
Latex for beginnerLatex for beginner
Latex for beginner
 
latex-workshop Dr: Mohamed A. Alrshah
latex-workshop Dr: Mohamed A. Alrshahlatex-workshop Dr: Mohamed A. Alrshah
latex-workshop Dr: Mohamed A. Alrshah
 
Introduction to Latex
Introduction to Latex Introduction to Latex
Introduction to Latex
 
LaTeX Part 1
LaTeX Part 1LaTeX Part 1
LaTeX Part 1
 
Sap abap material
Sap abap materialSap abap material
Sap abap material
 
LaTeX for beginners
LaTeX for beginnersLaTeX for beginners
LaTeX for beginners
 
LaTeX Part 2
LaTeX Part 2LaTeX Part 2
LaTeX Part 2
 
Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and Practices
 
Latex workshop
Latex workshopLatex workshop
Latex workshop
 
Tutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting DocumentsTutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting Documents
 
SAP ABAP Practice exam
SAP ABAP Practice examSAP ABAP Practice exam
SAP ABAP Practice exam
 
scientific writing 01 - latex
scientific writing   01 - latexscientific writing   01 - latex
scientific writing 01 - latex
 
LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners
 
Testing File
Testing FileTesting File
Testing File
 
The LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: InvocationThe LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: Invocation
 
Latex Notes
Latex NotesLatex Notes
Latex Notes
 
Latex Tutorial by Dr. M. C. Hanumantharaju
Latex Tutorial by Dr. M. C. HanumantharajuLatex Tutorial by Dr. M. C. Hanumantharaju
Latex Tutorial by Dr. M. C. Hanumantharaju
 
Latex slides
Latex slidesLatex slides
Latex slides
 
Training basic latex
Training basic latexTraining basic latex
Training basic latex
 

Andere mochten auch

2016 investing in energy
2016 investing in energy2016 investing in energy
2016 investing in energyAdel Abouhana
 
CV ines jojoa_maldonado
CV ines jojoa_maldonadoCV ines jojoa_maldonado
CV ines jojoa_maldonadoinejo40
 
Don't Call It a Comeback: Attribute Grammars for Big Data Visualization
Don't Call It a Comeback: Attribute Grammars for Big Data VisualizationDon't Call It a Comeback: Attribute Grammars for Big Data Visualization
Don't Call It a Comeback: Attribute Grammars for Big Data VisualizationLeo Meyerovich
 
Museums & Wikidata - studiedag Rubenianum
Museums & Wikidata - studiedag RubenianumMuseums & Wikidata - studiedag Rubenianum
Museums & Wikidata - studiedag RubenianumPACKED vzw
 
All That You Need to Know about a Start-up
All That You Need to Know about a Start-upAll That You Need to Know about a Start-up
All That You Need to Know about a Start-upDeena Zaidi
 
Alternative sources of energy
Alternative sources of energyAlternative sources of energy
Alternative sources of energyLyca Locario
 
Predict facebook impressions adopting a mathematical model of the hit phenomenon
Predict facebook impressions adopting a mathematical model of the hit phenomenonPredict facebook impressions adopting a mathematical model of the hit phenomenon
Predict facebook impressions adopting a mathematical model of the hit phenomenonZac Darcy
 
Taufan rizky, sistem informasi semester 1, makalah pendidikan
Taufan rizky, sistem informasi semester 1, makalah pendidikanTaufan rizky, sistem informasi semester 1, makalah pendidikan
Taufan rizky, sistem informasi semester 1, makalah pendidikantaufanrizky
 
White and Black Beamer
White and Black BeamerWhite and Black Beamer
White and Black BeamerHirwanto Iwan
 
Will indian markets rise with modi?
Will indian markets rise with modi?Will indian markets rise with modi?
Will indian markets rise with modi?Deena Zaidi
 
The very hungry_caterpillar_power_point
The very hungry_caterpillar_power_pointThe very hungry_caterpillar_power_point
The very hungry_caterpillar_power_pointpenguins2
 
Hagyomany
HagyomanyHagyomany
Hagyomanykrizma
 
Kohēzijas politikas ES fondu investīciju progress līdz 2014.gada 31.janvārim
Kohēzijas politikas ES fondu investīciju progress līdz 2014.gada 31.janvārimKohēzijas politikas ES fondu investīciju progress līdz 2014.gada 31.janvārim
Kohēzijas politikas ES fondu investīciju progress līdz 2014.gada 31.janvārimFinanšu ministrija
 

Andere mochten auch (20)

2016 investing in energy
2016 investing in energy2016 investing in energy
2016 investing in energy
 
CV ines jojoa_maldonado
CV ines jojoa_maldonadoCV ines jojoa_maldonado
CV ines jojoa_maldonado
 
Don't Call It a Comeback: Attribute Grammars for Big Data Visualization
Don't Call It a Comeback: Attribute Grammars for Big Data VisualizationDon't Call It a Comeback: Attribute Grammars for Big Data Visualization
Don't Call It a Comeback: Attribute Grammars for Big Data Visualization
 
Museums & Wikidata - studiedag Rubenianum
Museums & Wikidata - studiedag RubenianumMuseums & Wikidata - studiedag Rubenianum
Museums & Wikidata - studiedag Rubenianum
 
All That You Need to Know about a Start-up
All That You Need to Know about a Start-upAll That You Need to Know about a Start-up
All That You Need to Know about a Start-up
 
Alternative sources of energy
Alternative sources of energyAlternative sources of energy
Alternative sources of energy
 
Predict facebook impressions adopting a mathematical model of the hit phenomenon
Predict facebook impressions adopting a mathematical model of the hit phenomenonPredict facebook impressions adopting a mathematical model of the hit phenomenon
Predict facebook impressions adopting a mathematical model of the hit phenomenon
 
Taufan rizky, sistem informasi semester 1, makalah pendidikan
Taufan rizky, sistem informasi semester 1, makalah pendidikanTaufan rizky, sistem informasi semester 1, makalah pendidikan
Taufan rizky, sistem informasi semester 1, makalah pendidikan
 
Three ads
Three adsThree ads
Three ads
 
White and Black Beamer
White and Black BeamerWhite and Black Beamer
White and Black Beamer
 
Vin fb2
Vin fb2Vin fb2
Vin fb2
 
Will indian markets rise with modi?
Will indian markets rise with modi?Will indian markets rise with modi?
Will indian markets rise with modi?
 
перші розділи. герої роману.
перші розділи. герої роману.перші розділи. герої роману.
перші розділи. герої роману.
 
Fák
FákFák
Fák
 
Pleno Dementia
Pleno DementiaPleno Dementia
Pleno Dementia
 
The very hungry_caterpillar_power_point
The very hungry_caterpillar_power_pointThe very hungry_caterpillar_power_point
The very hungry_caterpillar_power_point
 
Timehin_James CV
Timehin_James CVTimehin_James CV
Timehin_James CV
 
Hagyomany
HagyomanyHagyomany
Hagyomany
 
Kohēzijas politikas ES fondu investīciju progress līdz 2014.gada 31.janvārim
Kohēzijas politikas ES fondu investīciju progress līdz 2014.gada 31.janvārimKohēzijas politikas ES fondu investīciju progress līdz 2014.gada 31.janvārim
Kohēzijas politikas ES fondu investīciju progress līdz 2014.gada 31.janvārim
 
Mult3
Mult3Mult3
Mult3
 

Ähnlich wie Chap16 scr

La tex basics
La tex basicsLa tex basics
La tex basicsawverret
 
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...Jim Webb
 
LaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.pptLaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.pptMichalis33
 
Introduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah NabatiIntroduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah Nabatinabati
 
Inverted Index Construction Slide 10 sllae 11ide 13 .pdf
Inverted Index Construction Slide 10 sllae 11ide 13  .pdfInverted Index Construction Slide 10 sllae 11ide 13  .pdf
Inverted Index Construction Slide 10 sllae 11ide 13 .pdfsonicleaner
 
Latex Introduction for Beginners
Latex Introduction for BeginnersLatex Introduction for Beginners
Latex Introduction for Beginnersssuser9e8fa4
 
The use of the code analysis library OpenC++: modifications, improvements, er...
The use of the code analysis library OpenC++: modifications, improvements, er...The use of the code analysis library OpenC++: modifications, improvements, er...
The use of the code analysis library OpenC++: modifications, improvements, er...PVS-Studio
 

Ähnlich wie Chap16 scr (20)

Latex Tutorial
Latex TutorialLatex Tutorial
Latex Tutorial
 
La tex basics
La tex basicsLa tex basics
La tex basics
 
Chap02 scr
Chap02 scrChap02 scr
Chap02 scr
 
Chap13 scr
Chap13 scrChap13 scr
Chap13 scr
 
Chap15 scr
Chap15 scrChap15 scr
Chap15 scr
 
Learn Latex
Learn LatexLearn Latex
Learn Latex
 
LATEX.ppt
LATEX.pptLATEX.ppt
LATEX.ppt
 
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
 
Chap12 scr
Chap12 scrChap12 scr
Chap12 scr
 
latex.pptx
latex.pptxlatex.pptx
latex.pptx
 
Chap10 scr
Chap10 scrChap10 scr
Chap10 scr
 
LaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.pptLaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.ppt
 
Latex
LatexLatex
Latex
 
Introduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah NabatiIntroduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah Nabati
 
Chap05 scr
Chap05 scrChap05 scr
Chap05 scr
 
Inverted Index Construction Slide 10 sllae 11ide 13 .pdf
Inverted Index Construction Slide 10 sllae 11ide 13  .pdfInverted Index Construction Slide 10 sllae 11ide 13  .pdf
Inverted Index Construction Slide 10 sllae 11ide 13 .pdf
 
Latex Tuitorial
Latex TuitorialLatex Tuitorial
Latex Tuitorial
 
Latex Introduction for Beginners
Latex Introduction for BeginnersLatex Introduction for Beginners
Latex Introduction for Beginners
 
The use of the code analysis library OpenC++: modifications, improvements, er...
The use of the code analysis library OpenC++: modifications, improvements, er...The use of the code analysis library OpenC++: modifications, improvements, er...
The use of the code analysis library OpenC++: modifications, improvements, er...
 
LaTeX-Presentation
LaTeX-PresentationLaTeX-Presentation
LaTeX-Presentation
 

Mehr von Hirwanto Iwan

01. integral fungsi aljabar
01. integral fungsi aljabar01. integral fungsi aljabar
01. integral fungsi aljabarHirwanto Iwan
 
Analisis Butir Soal PG Matematika Wajib Kelas XII IPA-IPS NFBS Serang
Analisis Butir Soal PG Matematika Wajib Kelas XII IPA-IPS NFBS SerangAnalisis Butir Soal PG Matematika Wajib Kelas XII IPA-IPS NFBS Serang
Analisis Butir Soal PG Matematika Wajib Kelas XII IPA-IPS NFBS SerangHirwanto Iwan
 
Analisis Butir Soal Pilihan Ganda Matematika Wajib Kelas XII IPA
Analisis Butir Soal Pilihan Ganda Matematika Wajib Kelas XII IPAAnalisis Butir Soal Pilihan Ganda Matematika Wajib Kelas XII IPA
Analisis Butir Soal Pilihan Ganda Matematika Wajib Kelas XII IPAHirwanto Iwan
 
Materi Limit Aljabar dan Turunan Aljabar
Materi Limit Aljabar dan Turunan Aljabar Materi Limit Aljabar dan Turunan Aljabar
Materi Limit Aljabar dan Turunan Aljabar Hirwanto Iwan
 
Pembahasan Soal Matematika Wajib PTS Kelas XI IPS
Pembahasan Soal Matematika Wajib PTS Kelas XI IPSPembahasan Soal Matematika Wajib PTS Kelas XI IPS
Pembahasan Soal Matematika Wajib PTS Kelas XI IPSHirwanto Iwan
 
Pembahasan Soal Matematika Wajib PTS Kelas XI IPA
Pembahasan Soal Matematika Wajib PTS Kelas XI IPAPembahasan Soal Matematika Wajib PTS Kelas XI IPA
Pembahasan Soal Matematika Wajib PTS Kelas XI IPAHirwanto Iwan
 
Membuat Dokumen LaTeX Edisi ke - 33
Membuat Dokumen LaTeX Edisi ke - 33Membuat Dokumen LaTeX Edisi ke - 33
Membuat Dokumen LaTeX Edisi ke - 33Hirwanto Iwan
 

Mehr von Hirwanto Iwan (20)

01. integral fungsi aljabar
01. integral fungsi aljabar01. integral fungsi aljabar
01. integral fungsi aljabar
 
Analisis Butir Soal PG Matematika Wajib Kelas XII IPA-IPS NFBS Serang
Analisis Butir Soal PG Matematika Wajib Kelas XII IPA-IPS NFBS SerangAnalisis Butir Soal PG Matematika Wajib Kelas XII IPA-IPS NFBS Serang
Analisis Butir Soal PG Matematika Wajib Kelas XII IPA-IPS NFBS Serang
 
Analisis Butir Soal Pilihan Ganda Matematika Wajib Kelas XII IPA
Analisis Butir Soal Pilihan Ganda Matematika Wajib Kelas XII IPAAnalisis Butir Soal Pilihan Ganda Matematika Wajib Kelas XII IPA
Analisis Butir Soal Pilihan Ganda Matematika Wajib Kelas XII IPA
 
Materi Limit Aljabar dan Turunan Aljabar
Materi Limit Aljabar dan Turunan Aljabar Materi Limit Aljabar dan Turunan Aljabar
Materi Limit Aljabar dan Turunan Aljabar
 
Pembahasan Soal Matematika Wajib PTS Kelas XI IPS
Pembahasan Soal Matematika Wajib PTS Kelas XI IPSPembahasan Soal Matematika Wajib PTS Kelas XI IPS
Pembahasan Soal Matematika Wajib PTS Kelas XI IPS
 
Pembahasan Soal Matematika Wajib PTS Kelas XI IPA
Pembahasan Soal Matematika Wajib PTS Kelas XI IPAPembahasan Soal Matematika Wajib PTS Kelas XI IPA
Pembahasan Soal Matematika Wajib PTS Kelas XI IPA
 
Fitur Baru WinEdt 9.1
Fitur Baru WinEdt 9.1Fitur Baru WinEdt 9.1
Fitur Baru WinEdt 9.1
 
Pemasangan WinEdt 9.1
Pemasangan WinEdt 9.1Pemasangan WinEdt 9.1
Pemasangan WinEdt 9.1
 
Kumpulan Soal UM UGM
Kumpulan Soal UM UGMKumpulan Soal UM UGM
Kumpulan Soal UM UGM
 
Membuat Dokumen LaTeX Edisi ke - 33
Membuat Dokumen LaTeX Edisi ke - 33Membuat Dokumen LaTeX Edisi ke - 33
Membuat Dokumen LaTeX Edisi ke - 33
 
LATEX OR INDESIGN
LATEX OR INDESIGN LATEX OR INDESIGN
LATEX OR INDESIGN
 
AGH Beamer
AGH BeamerAGH Beamer
AGH Beamer
 
AFIT Beamer
AFIT BeamerAFIT Beamer
AFIT Beamer
 
Hackd Beamer
Hackd BeamerHackd Beamer
Hackd Beamer
 
LUH Beamer
LUH BeamerLUH Beamer
LUH Beamer
 
Cambridge Beamer
Cambridge BeamerCambridge Beamer
Cambridge Beamer
 
ESOP Beamer
ESOP BeamerESOP Beamer
ESOP Beamer
 
AP Beamer
AP BeamerAP Beamer
AP Beamer
 
Naked Beamer
Naked BeamerNaked Beamer
Naked Beamer
 
TUDelft Beamer
TUDelft BeamerTUDelft Beamer
TUDelft Beamer
 

Kürzlich hochgeladen

The Emergence of Legislative Behavior in the Colombian Congress
The Emergence of Legislative Behavior in the Colombian CongressThe Emergence of Legislative Behavior in the Colombian Congress
The Emergence of Legislative Behavior in the Colombian CongressMaria Paula Aroca
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...Nguyen Thanh Tu Collection
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWQuiz Club NITW
 
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxCLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxAnupam32727
 
Shark introduction Morphology and its behaviour characteristics
Shark introduction Morphology and its behaviour characteristicsShark introduction Morphology and its behaviour characteristics
Shark introduction Morphology and its behaviour characteristicsArubSultan
 
Sulphonamides, mechanisms and their uses
Sulphonamides, mechanisms and their usesSulphonamides, mechanisms and their uses
Sulphonamides, mechanisms and their usesVijayaLaxmi84
 
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...Nguyen Thanh Tu Collection
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDhatriParmar
 
4.9.24 Social Capital and Social Exclusion.pptx
4.9.24 Social Capital and Social Exclusion.pptx4.9.24 Social Capital and Social Exclusion.pptx
4.9.24 Social Capital and Social Exclusion.pptxmary850239
 
DiskStorage_BasicFileStructuresandHashing.pdf
DiskStorage_BasicFileStructuresandHashing.pdfDiskStorage_BasicFileStructuresandHashing.pdf
DiskStorage_BasicFileStructuresandHashing.pdfChristalin Nelson
 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptxDhatriParmar
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxkarenfajardo43
 
How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17Celine George
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...DhatriParmar
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationdeepaannamalai16
 

Kürzlich hochgeladen (20)

The Emergence of Legislative Behavior in the Colombian Congress
The Emergence of Legislative Behavior in the Colombian CongressThe Emergence of Legislative Behavior in the Colombian Congress
The Emergence of Legislative Behavior in the Colombian Congress
 
Mattingly "AI & Prompt Design" - Introduction to Machine Learning"
Mattingly "AI & Prompt Design" - Introduction to Machine Learning"Mattingly "AI & Prompt Design" - Introduction to Machine Learning"
Mattingly "AI & Prompt Design" - Introduction to Machine Learning"
 
Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...
Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...
Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
 
CARNAVAL COM MAGIA E EUFORIA _
CARNAVAL COM MAGIA E EUFORIA            _CARNAVAL COM MAGIA E EUFORIA            _
CARNAVAL COM MAGIA E EUFORIA _
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITW
 
Introduction to Research ,Need for research, Need for design of Experiments, ...
Introduction to Research ,Need for research, Need for design of Experiments, ...Introduction to Research ,Need for research, Need for design of Experiments, ...
Introduction to Research ,Need for research, Need for design of Experiments, ...
 
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxCLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
 
Shark introduction Morphology and its behaviour characteristics
Shark introduction Morphology and its behaviour characteristicsShark introduction Morphology and its behaviour characteristics
Shark introduction Morphology and its behaviour characteristics
 
Sulphonamides, mechanisms and their uses
Sulphonamides, mechanisms and their usesSulphonamides, mechanisms and their uses
Sulphonamides, mechanisms and their uses
 
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
 
4.9.24 Social Capital and Social Exclusion.pptx
4.9.24 Social Capital and Social Exclusion.pptx4.9.24 Social Capital and Social Exclusion.pptx
4.9.24 Social Capital and Social Exclusion.pptx
 
Chi-Square Test Non Parametric Test Categorical Variable
Chi-Square Test Non Parametric Test Categorical VariableChi-Square Test Non Parametric Test Categorical Variable
Chi-Square Test Non Parametric Test Categorical Variable
 
DiskStorage_BasicFileStructuresandHashing.pdf
DiskStorage_BasicFileStructuresandHashing.pdfDiskStorage_BasicFileStructuresandHashing.pdf
DiskStorage_BasicFileStructuresandHashing.pdf
 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
 
How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentation
 

Chap16 scr

  • 1. Indian TEX Users Group : http://www.river-valley.com/tug Table of Contents Index 16 Glossary Title Page A On-line Tutorial on LTEX The Tutorial Team Indian TEX Users Group,  Buildings, Cotton Hills Trivandrum 695014,  2000 Prof. (Dr.) K. S. S. Nambooripad, Director, Center for Mathematical Sciences, Trivandrum, (Editor); Dr. E. Krishnan, Reader in Mathematics, University College, Trivandrum; Mohit Agarwal, Department of Aerospace Engineering, Indian Institute of Science, Bangalore; T. Rishi, Focal Image (India) Pvt. Ltd., Trivandrum; L. A. Ajith, Focal Image (India) Pvt. Ltd., Trivandrum; A. M. Shan, Focal Image (India) Pvt. Ltd., Trivandrum; C. V. Radhakrishnan, River Valley Technologies, Software Technology Park, Trivandrum constitute the Tutorial team A A This document is generated from LTEX sources compiled with pdfLTEX v. 14e in an INTEL Pentium III 700 MHz system running Linux kernel version 2.2.14-12. The packages used are hyperref.sty and pdfscreen.sty A c 2000, Indian TEX Users Group. This document may be distributed under the terms of the LTEX A Project Public License, as described in lppl.txt in the base LTEX distribution, either version 1.0 or, at your option, any later version Page 1 of 14 Go Back Full Screen Close Quit
  • 2. 16 Table of Contents, Index and Glossary Table of Contents Index Glossary 16.1. Table of Contents A table of contents is a special list which contains the section numbers and corresponding headings as given in the standard form of the sectioning commands, together with the page numbers on which they begin. Similar lists exist containing reference information about the floating elements in a document, namely, the list of tables and list of figures. The structure of these lists is simpler, since their contents, the captions of the floating elements, are all on the same level. A A Standard LTEX can automatically create these three contents lists. By default, LTEX enters text generated by one of the arguments of the sectioning commands into the .toc file. Similarly, A LTEX maintains two more files, one for the list of figures (.lof) and one for the list of tables (.lot), which contain the text specified as the argument of the caption command for figures and tables. tableofcontents produces a table of contents. listoffigures and listoftables produce a list of figures and list of tables respectively. These lists are printed at the point where these A commands are issued. Occasionally, you may find that you don’t like the way LTEX prints a table of contents or a list of figures or tables. You can fine-tune an individual entry by using the optional arguments to the sectioning command or caption command that generates it. Formatting commands can also be introduced with the addtocontents. If all else fails, you can edit the .toc, lof, lot files yourself. Edit these files only when preparing the final version of your document, and use a nofiles command to suppress the writing of new versions of the files. Title Page Page 2 of 14 Go Back Full Screen Close Quit
  • 3. 16.1.1. Additional entries A The *-form sectioning commands are not entered automatically in the table of contents. LTEX offers two commands to insert such information directly into a contents file: addtocontents{file}{text} addcontentsline{file}{type}{text} Table of Contents Index Glossary file The extension of the contents file, usually toc, lof or lot. type The type of the entry. For the toc file the type is normally the same as the heading according to whose format an entry must be typeset. For the lof or lot files, figure or table is specified. text A The actual information to be written to the file mentioned. LTEX commands should be protected by protect to delay expansion Title Page The addtocontents command does not contain a type parameter and is intended to enter userspecific formatting information. For example, if you want to generate additional spacing in the middle of a table of contents, the following command can be issued: Page 3 of 14 addtocontents{toc}{protectvspace{2ex}} Go Back The addcontentsline instruction is usually invoked automatically by the document sectioning commands, or by the caption commands. If the entry contains numbered text, then numberline must be used to separate the section number (number) from the rest of the text for the entry (heading) in the text parameter: protectnumberline{number}heading Full Screen Close Quit
  • 4. documentclass{article} defbibTeX{textsc{bib}TeX} begin{document} Table of Contents title{LaTeX{} Guide} author{TUG India} date{} Index Glossary maketitle tableofcontents Title Page addtocontents{toc}{protectrule{textwidth}{.2pt}par} section{Moving Information Around} verb+tableofcontents+ command produces table of contents....... section{Bibliography and Citation} A citation is a cross-reference to another publication, such...... subsection{Using bibTeX} bibTeX is a separate program that produces the source list ...... Page 4 of 14 subsection{Doing it yourself} A source list is created with the thebibliography ...... addcontentsline{toc}{section}{numberline{}Splitting Your emph{Input}} section*{Splitting Your Input} addtocontents{toc}{noindentprotectrule{textwidth}{.2pt}par} Go Back Full Screen A large document requires a lot of input. Rather than ....... end{document} Close Figure 16.1: Input file contains tableofcontents command. Quit
  • 5. ' rule {textwidth }{.2pt}par contentsline {section}{numberline {1}Moving Information Around}{1} contentsline {section}{numberline {2}Bibliography and Citation}{1} contentsline {subsection}{numberline {2.1}Using textsc {bib}TeX}{1} contentsline {subsection}{numberline {2.2}Doing it yourself}{1} contentsline {section}{hbox to@tempdima {hfil } Splitting Your emph {Input}}{1} noindent rule {textwidth }{.2pt}par & $ A L TEX Guide TUG India Contents 1 Moving Information Around 1 2 Bibliography and Citation 2.1 Using bibTEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2.2 Doing it yourself . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Splitting Your Input 1 Table of Contents 1 1 Index 1 Glossary Moving Information Around tableofcontents command produces table of contents. Mainly it does ...... 2 Bibliography and Citation Title Page A citation is a cross-reference to another publication, such as a ...... % bibTEX 2.1 Using bibTEX is a separate program that produces the source list for a ...... 2.2 Doing it yourself A source list is created with the thebibliography environment, which ...... Splitting Your Input A large document requires a lot of input. Rather than putting the ....... Figure 16.2: Output .toc file and .dvi Page 5 of 14 For example, a caption command inside a figure environment saves the text annotating the figure as follows: Go Back addcontentsline{lof}{figure}{protectnumberline{thefigure}captioned text} Full Screen Sometimes addcontentsline is used in the source to complement the actions of standard A LTEX. For instance, in the case of the starred form of the section commands, no information is written to the .toc file. So if you do not want a heading number (starred form) but an entry in the .toc file you can write something like: Close Quit
  • 6. chapter*{Forward} addcontentsline{toc}{chapter}{numberline{}Forward} This produces an indented “chapter” entry in the table of contents, leaving the space where the chapter number would go free. Omitting the numberline command would typeset the word “Forward” flush left instead. Table of Contents Index Glossary 16.1.2. Typesetting a Contents List As discussed above, contents lists consists of entries of different types, corresponding to the structural units that they represent. Apart from these standard entries, these lists may contain any commands. A standard entry is specified by the command: Title Page contentsline{type}{text}{page} type type of the entry, e.g. section, or figure. text actual text as specified in the argument of the sectioning or caption commands. page pagenumber. Page 6 of 14 Note that section numbers are entered as a parameter of the numberline command to allow formatting with the proper indentation. It is also possible for the user to create a table of contents by hand with the help of the command contentsline. For example: contentsline {section} {numberline {2.4}Structure of the Table of Contents}{31} Go Back Full Screen Close Quit
  • 7. A To format an entry in the table of contents files, standard LTEX makes use of the following command: @dottedtocline{level}{indent}{numwidth}{text}{page} Table of Contents Index The last two parameters coincide with those of contentsline, since the latter usually invokes @dottedtocline command. The other parameters are the following: level The nesting level of an entry. This parameter allows the user to control how many nesting levels will be displayed. Levels greater than the value of counter tocdepth will not appear in the table of contents. indent Glossary This is total indentation from the left margin. Title Page numwidth The width of the box that contains the number if text has a numberline command. This is also the amount of extra indentation added to the second and later lines of a multiple line entry. Additionally, the command @dottedtocline uses the following formatting parameters, which specify the visual appearance of all entries: @pnumwidth The width of the box in which the page number is set. @tocmarg @dotsep The indentation of the right margin for all but the last line of multiple line entries. Dimension, but changed with renewcommand. The separation between dots, in mu (math units). It is a pure number (like 1.7 or 2). By making this number large enough you can get rid of the dots altogether. Changed with renewcommand as well. Page 7 of 14 Go Back Full Screen Close Quit
  • 8. 16.1.3. Multiple Tables of Contents The minitoc package, initially written by Nigel Ward and Dan Jurafsky and completely redesigned by Jean-Pierre Drucbert, creates a mini-table of contents (a “minitoc”) at the beginning of each chapter when you use the book or report classes. The mini-table of contents will appear at the beginning of a chapter, after the chapter command. The parameters that govern the use of this package are discussed below: Table of Contents Index Glossary Table 16.1: Summary of the minitoc parameters dominitoc faketableofcontents minitoc minitocdepth mtcindent mtcfont must be put just in front of tableofcontents, to initialize the minitoc system (Mandatory). this command replaces tableofcontents when you want minitocs but not table of contents. this command must be put right after each chapter command where a minitoc is desired. A a LTEX counter that indicates how many levels of headings will be displayed in the minitoc (default value is 2). the length of the left/right indentation of the minitoc (default value is 24pt). command defining the font that is used for the minitoc entries (The default definition is a small roman font). Title Page Page 8 of 14 Go Back For each mini-table, an auxiliary file with extension .mtc<N> where <N> is the chapter number, will be created. By default, these mini-tables contain only references to sections and subsections. The minitocdepth counter, similar to tocdepth, allows the user to modify this behaviour. Full Screen Close As the minitoc takes up room on the first page(s) of a chapter, it will alter the page numberQuit
  • 9. ing. Therefore, three runs normally are needed to get correct information in the mini-table of contents. To turn off the minitoc commands, merely replace the package minitoc with minitocoff on your usepackage command. This assures that all minitoc commands will be ignored. Table of Contents Index Glossary 16.2. Index Title Page To find a topic of interest in a large document, book, or reference work, you usually turn to the table of contents or, more often, to the index. Therefore, an index is a very important part of a document, and most users’ entry point to a source of information is precisely through a pointer in the index. The most generally used index preparation program is MakeIndex A Each index command causes LTEX to write an entry in the .idx file. This command writes the text given as an argument, in the .idx file. This .idx will be generated only if we give makeindex command in the preamble otherwise it will produce nothing. Page 9 of 14 index{index entry} Go Back To generate Index follow the procedure given below: (1) Tag the words inside the document, which needs to come as index, as an argument of index command. (2) Include the makeidx package with an usepackage command and put makeindex commad at the preamble. (3) Put a printindex command where the index is to appear, normally before end{document} command. Full Screen Close Quit
  • 10. A (4) LTEX file. Then a raw index (file.idx) will be generated. (5) Then Run makeindex. (makeindex file.idx or makeindex file). Then two more files will be generated, file.ind which contains the index entries and file.ilg, a transcript file. A (6) Then again run LTEX. Now you can see in the dvi that the Index has been generated in a new page. Table of Contents Page vi: Page 5: Page 6: Page 7: Page 11: Page 17: Page 26: Page 32: index{animal} index{animal} index{animal} index{animal} index{animalism|see{animal}} index{animal@emph{animal}} index{mammal|textbf} index{animal!mammal!cat} index{animal!insect} indexentry{animal}{vi} indexentry{animal}{5} indexentry{animal}{6} indexentry{animal}{7} indexentry{animalism|seeanimal}{11} indexentry{animal@emph{animal}}{17} indexentry{mammal|textbf}{17} indexentry{animal!mammal!cat}{26} indexentry{animal!insect}{32} (a) The input file begin{theindex} item animal, vi, 5–7 subitem insect, 32 subitem mammal subsubitem cat, 26 item emph{animal}, 17 item animalism, see{animal}{11} indexspace item mammal, textbf{17} end{theindex} (c) The .ind file Index Glossary Title Page (b) The .idx file animal, vi 5–7 insect, 32 mammal cat, 26 animal, 17 animalism, see animal mammal, 17 Page 10 of 14 Go Back Full Screen (d) The typeset output Close Figure 16.3: Stepwise development of index processing Quit
  • 11. 16.2.1. Simple Index Entries A Each index command causes LTEX to write an entry in the .idx file. For example index{index entry} Table of Contents Index Glossary 16.2.2. Sub Entries A Up to three levels of index entries (main, sub, and subsub entries) are available with LTEXMakeIndex. To produce such entries, the argument of the index command should contain both the main and subentries, separated by ! character. Title Page Page 5: index{dimensions!rule!width} This will come as Page 11 of 14 dimensions rule width, 5 Go Back Full Screen 16.2.3. Page Ranges and Cross-References You can specify a page range by putting the command index{...|(} at the beginning of the range and index{...|)} at the end of the range. Page ranges should span a homogeneous numbering scheme (e.g., roman and arabic page numbers cannot fall within the same range). Close Quit
  • 12. You can also generate cross-reference index entries without page numbers by using the see encapsulator. Since “see” entry does not print any page number, the commands index{...|see{...}} can be placed anywhere in the input file after the begin{document} command. For practical reasons, it is convenient to group all such cross-referencing commands in one place. fonts Computer Modern, 13–25 math, see math, fonts PostScript, 5 table, ii–xi, 14 Page ii: Page xi: Page 5: Page 13 Page 14: Page 17: Page 21: Page 25: index{table|(} index{table|)} index{fonts!PostScript|(} index{fonts!PostScript|)} index{fonts!Computer Modern |(} index{table} index{fonts!math|see{math, fonts}} index{fonts!Computer Modern} index{fonts!Computer Modern|)} Table of Contents Index Glossary Title Page Figure 16.4: Page range and cross-referencing 16.2.4. Controlling the Presentation Form Sometimes you may want to sort an entry according to a key, while using a different visual representation for the typesetting, such as Greek letters, mathematical symbols, or specific typographic forms. This function is available with the syntax: key@visual, where key determines the alphabetical position and the string value produces the typeset text of the entry. For some, indexes, certain page numbers should be formatted specially, with an italic page number (for example) indicating a primary reference, and an n after a page number denoting that the item appears in a footnote on that page. MakeIndex allows you to format an individual page number in any way you want by using the encapsulator syntax specified | character. What follows the | sign will “encapsulate” or enclose the page number associated with the index entry. For instance, the command index{keyword|xxx} will produce a page number of the form xxx{n}, where n is the page number in question. Similarly, the command index{keyword|(xxx)} will generate a page range of the form xxx{n-m} Page 12 of 14 Go Back Full Screen Close Quit
  • 13. newcommand{nn}[1]{#1n} delta, 14 δ, 23 delta wing, 16 flower, 19 ninety, 26 xc, 28 ninety-five, 5 tabbing, 7, 34–37 tabular, ii, 21, 22n tabular environment, 23 Page ii: Page 5: Page 7: Page 14: Page 16: Page 19: Page 21: Page 22: Page 23: Page 26: Page 28: Page 34: Page 36: index{tabular|textbf} index{ninety-five} index{tabbing} index{delta} index{delta wing} index{flower@textbf{flower}} index{tabular|textit} index{tabular|nn} index{delta@δ} index{tabular@texttt{tabular} environment} index{ninety} index{ninety@xc} index{tabbing|(textit} index{tabbing|)} Table of Contents Index Glossary Title Page Figure 16.5: Controlling the presentation form 16.2.5. Printing those Special Characters To typeset one of the characters having a special meaning to MakeIndex (!, ”, @, or |) in the index, precede it with a ” character. More precisely, any character is said to be quoted if it follows an unquoted ” that is not part of a " command. The latter case is for allowing umlaut characters. Quoted !, @, ”, or | characters are treated like ordinary characters, losing their special meaning. The ” preceding a quoted character is deleted before the entries are alphabetised. @ sign, 2 |, see vertical bar exclamation (!), 4 Ah!, 5 M¨ dchen, 3 a quote (”), 1 ” sign, 1 Page 1: Page 2: Page 3: Page 4: Page 5: index{bar@texttt{”|}|see{vertical bar}} index{quote (verb+””+)} index{quote@texttt{””} sign} index{atsign@texttt{”@} sign} index{maedchen@M”{a}dchen} index{exclamation (”!)} index{exclamation (”!)!Ah”!} 16.6 Printing those special characters Page 13 of 14 Go Back Full Screen Close Quit
  • 14. 16.3. Glossary A ‘glossary’ is a special index of terms and phrases alphabetically ordered together with their A explanations. To help set up a glossary, LTEX offers the commands Table of Contents makeglossary in the preamble and glossary{glossary-entry} in the text part which function just like the commands for making up an index register. The entries are written to a file with extension .glo after the command makeglossary has been given in the preamble. The form of these file entries from each glossary command is Index Glossary Title Page glossaryentry{glossary-entry}{pagenumber} The information the .glo file can be used to establish a glossary. However, there is no equivalent to the theindex environment for a glossary, but a recommended structure is the description environment or a special list environment. Page 14 of 14 Go Back Full Screen Close Quit