SlideShare a Scribd company logo
Indian TEX Users Group
URL:

http://www.river-valley.com/tug

Lists

4

Displayed text

Title Page

A
On-line Tutorial on LTEX
The Tutorial Team
Indian TEX Users Group, sjp Buildings, Cotton Hills
Trivandrum 695014, india
2000
Prof. (Dr.) K. S. S. Nambooripad, Director, Center for Mathematical Sciences, Trivandrum, (Editor);
Dr. E. Krishnan, Reader in Mathematics, University College, Trivandrum; 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 TUGIndia Tutorial team

Page 1 of 8

Go Back

Full Screen
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

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

Close

Quit
4 Lists, etc.
Lists
Displayed text

4.1.

Lists
Title Page

There are three list environments available for producing formatted lists:
begin{enumerate}
begin{itemize}
begin{description}

4.1.1.

list text
list text
list text

end{enumerate}
end{itemize}
end{description}

Sample enumerate
Page 2 of 8

(1) The labels consists of sequential numbers.
(2) The numbers starts at 1 with every call to the enumerate environment.
Go Back

begin{enumerate}
item The labels consists of sequential numbers.
item The numbers starts at 1 with every call to the
enumerate environment.
end{enumerate}

Full Screen

Close

Quit
4.1.2.

Sample itemize
• The individual entries are indicated with a black dot, so-called bullet.
• The text in the entries may be of any length.

begin{itemize}
item The individual entries are indicated with a black dot,
a so-called bullet.
item The text in the entries may be of any length.
end{itemize}

4.1.3.

Lists
Displayed text

Title Page

Sample description
Purpose: This environment is appropriate when a number of words or expressions
are to be defined. This environment is appropriate when a number of words
or expressions are to be defined.
Example: It may also be used as an author list in the bibliography.
begin{description}
item[Purpose:] This environment is appropriate when a number of
words or expressions are to be defined. This
environment is appropriate when a number of words or
expressions are to be defined.
item[Example:] It may also be used as an author list in the
bibliography.
end{description}

Page 3 of 8

Go Back

Full Screen

Close

Quit
4.1.4.

Nesting of lists
The above lists may be included within one another, either mixed or of one type,
to a depth of four levels. An example of a nested list with mixed types:
• The itemize label at the first level is a bullet.
(1) The numbering is with Arabic numerals since this is ...
This is the third level of the nesting, but the ...
(a) And this is the fourth level of the overall ...
(b) Thus the numbering is with lower case letters ...
The label at this level is a long dash.
(2) Every list should contain at least two points.

Lists
Displayed text

Title Page

• Blank lines ahead of an ...

begin{itemize}
item The {tt itemize} label at the first level is a bullet.
begin{enumerate}
item The numbering is with Arabic numerals since this is ...
begin{itemize}
item This is the third level of the nesting, but the ...
begin{enumerate}
item And this is the fourth level of the overall ...
item Thus the numbering is with lower case letters ...
end{enumerate}
item The label at this level is a long dash.
end{itemize}
item Every list should contain at least two points.
end{enumerate}
item Blank lines ahead of an ...
end{itemize}

Page 4 of 8

Go Back

Full Screen

Close

Quit
4.1.5.

Manipulation of list numbers

(1) First level item
(2) First level item
(a) Second level item
(b) Second level item
i. Third level item
ii. Third level item
A. Fourth level item
B. Fourth level item
iii. Third level item
iv. Third level item
(c)
(d)
(3) First
(4) First

Second level item
Second level item
level item
level item

The default numbering scheme of list
level 1 is Arabic numbers, level 2 is lowercase letters, level 3 is lower case Roman numeral and level 4 is uppercase
letters. These numbers can be changed
by redefining the commands that typeset the numbers of various list levels. theenumi, theenumii, theenumiii
and theenumiv correspond to the number label in different levels of enumerated lists. labelenumi, labelenumii,
labelenumiii and labelenumiv relate
to the attributes of the number label in
different levels of itemized lists.

If you want to change the default number scheme of the first level of enumerated
list to bold uppercase Roman numeral enclosed within a pair of square brackets,
you might issue the following command just before the start of the begin{enumerate}
command:

Lists
Displayed text

Title Page

Page 5 of 8

Go Back

renewcommandtheenumi{Roman{enumi}}
renewcommandlabelenumi{[{bfseriestheenumi}]}

Full Screen

[I] First level item
[II] First level item
The commands arabic, roman, Roman, alph, Alph will yield Arabic number (1,

Close

Quit
2, 3, . . . ), lowercase Roman numeral (i, ii, iii, . . . ), uppercase Roman numeral (I,
II, III, . . . ), lowercase alphabet (a, b, c, . . . ) and uppercase alphabet (A, B, C, . . . )
respectively.

4.1.6.

Manipulation of list labels
Lists

• First level item
• First level item
– Second level item
– Second level item
∗ Third level item
∗ Third level item
· Fourth level item
· Fourth level item
∗ Third level item
∗ Third level item
–
–
• First
• First

Second level item
Second level item
level item
level item

The default label scheme of itemized list level 1 is textbullet (•),
level 2 is textendash (–) , level 3 is
textasteriskcentered (∗) and for level
4 is textperiodcentered (·).
These
labels can be changed by redefining
the commands that typeset the labels
labelitemi,
of various list levels.
labelitemii,
labelitemiii
and
labelitemiv correspond to the labels in different levels of itemized lists.
If you want to change the default label
scheme of the first level of itemized
list to unfilled square, you might issue
the following command just before the
begin{itemize} command:

renewcommandlabelitemi{$square$}

First level item

Displayed text

Title Page

Page 6 of 8

Go Back

Full Screen

Close

First level item
Quit
4.2.

Displayed text
Quite often we might be needed to typeset text material in a different way than the
ordinary sentences to highlight its importance. These are normally called displayed
A
text. L TEX provides three environments, quote, quotation and verse for displaying
your text, the normal usage is shown below:

Lists
Displayed text

begin{quote}
begin{quotation}
begin{verse}

text
text
text

end{quote}
end{quotation}
end{verse}

Title Page

A section of text will be displayed by indenting it by an equal amount on both
sides, with these environments.

4.2.1.

Quote and quotation
The example of quote environment given below is self explanatory. The left box
gives you the code and right one is the typeset output.

... example of a short displayed
quotation.
begin{quote}
It’s a good idea to make your input
file as easy to read as possible.
end{quote}

The following is an example of a short
displayed quotation.
It’s a good idea to make your input
file as easy to read as possible.

Page 7 of 8

Go Back

Full Screen

Close

quote is limited to a single paragraph, while quotation can be used to display texts

running to paragraphs.

Quit
4.2.2.

Poetry
Poetry is displayed with the verse environment. A new stanza is begun with one
or more blank lines; lines within a stanza are separated by  command.

begin{verse}
There is an environment for verse
Whose features some poets will curse
For instead of making
Them do emph{all} line breaking,
It allows them to put many words on a line when they’d rather be
forced to be terse.
end{verse}

Lists
Displayed text

Title Page

The above code will generate the following output:
Page 8 of 8

There is an environment for verse
Whose features some poets will curse
For instead of making
Them do all line breaking,
It allows them to put many words on a line when
they’d rather be forced to be terse.

Go Back

Full Screen

Close

Quit

More Related Content

What's hot

Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
Saikrishna Tanguturu
 
What is symbol table?
What is symbol table?What is symbol table?
What is symbol table?
Satyamevjayte Haxor
 
Compiler Engineering Lab#5 : Symbol Table, Flex Tool
Compiler Engineering Lab#5 : Symbol Table, Flex ToolCompiler Engineering Lab#5 : Symbol Table, Flex Tool
Compiler Engineering Lab#5 : Symbol Table, Flex Tool
MashaelQ
 
Lexical analyzer
Lexical analyzerLexical analyzer
Lexical analyzer
kiran acharya
 
Ambiguous grammar, dfa and slr grammar.
Ambiguous grammar, dfa and slr  grammar.Ambiguous grammar, dfa and slr  grammar.
Compiler and symbol table
Compiler and symbol tableCompiler and symbol table
Compiler and symbol table
Sunjid Hasan
 
Lexical Analysis - Compiler design
Lexical Analysis - Compiler design Lexical Analysis - Compiler design
Lexical Analysis - Compiler design
Aman Sharma
 
Syntactic analysis in NLP
Syntactic analysis in NLPSyntactic analysis in NLP
Syntactic analysis in NLP
kartikaVashisht
 

What's hot (10)

Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
 
What is symbol table?
What is symbol table?What is symbol table?
What is symbol table?
 
Lp 2
Lp 2Lp 2
Lp 2
 
Compiler Engineering Lab#5 : Symbol Table, Flex Tool
Compiler Engineering Lab#5 : Symbol Table, Flex ToolCompiler Engineering Lab#5 : Symbol Table, Flex Tool
Compiler Engineering Lab#5 : Symbol Table, Flex Tool
 
Al2ed chapter6
Al2ed chapter6Al2ed chapter6
Al2ed chapter6
 
Lexical analyzer
Lexical analyzerLexical analyzer
Lexical analyzer
 
Ambiguous grammar, dfa and slr grammar.
Ambiguous grammar, dfa and slr  grammar.Ambiguous grammar, dfa and slr  grammar.
Ambiguous grammar, dfa and slr grammar.
 
Compiler and symbol table
Compiler and symbol tableCompiler and symbol table
Compiler and symbol table
 
Lexical Analysis - Compiler design
Lexical Analysis - Compiler design Lexical Analysis - Compiler design
Lexical Analysis - Compiler design
 
Syntactic analysis in NLP
Syntactic analysis in NLPSyntactic analysis in NLP
Syntactic analysis in NLP
 

Viewers also liked

Charter bt
Charter btCharter bt
Charter bt
Hirwanto Iwan
 
Resume Film Red Cliff
Resume Film Red CliffResume Film Red Cliff
Resume Film Red Cliff
Muhammad Arif Billah Faishaluddin
 
Iwona condensed
Iwona condensedIwona condensed
Iwona condensed
Hirwanto Iwan
 
Pengantar la tex
Pengantar la texPengantar la tex
Pengantar la tex
Hirwanto Iwan
 
Telecomunicacions
TelecomunicacionsTelecomunicacions
Telecomunicacions
Pidelsanguila3
 
APPLICATION OF ARTIFICIAL NEURAL NETWORKS IN ESTIMATING PARTICIPATION IN ELEC...
APPLICATION OF ARTIFICIAL NEURAL NETWORKS IN ESTIMATING PARTICIPATION IN ELEC...APPLICATION OF ARTIFICIAL NEURAL NETWORKS IN ESTIMATING PARTICIPATION IN ELEC...
APPLICATION OF ARTIFICIAL NEURAL NETWORKS IN ESTIMATING PARTICIPATION IN ELEC...
Zac Darcy
 
Cultuurforum 2016 Wikipedia: Een platform om levend erfgoed te documenteren 1
Cultuurforum 2016 Wikipedia: Een platform om levend erfgoed te documenteren 1Cultuurforum 2016 Wikipedia: Een platform om levend erfgoed te documenteren 1
Cultuurforum 2016 Wikipedia: Een platform om levend erfgoed te documenteren 1
PACKED vzw
 
Museums & Wikidata - studiedag Rubenianum
Museums & Wikidata - studiedag RubenianumMuseums & Wikidata - studiedag Rubenianum
Museums & Wikidata - studiedag Rubenianum
PACKED vzw
 
VEWA Project Reference 2016
VEWA Project Reference 2016VEWA Project Reference 2016
VEWA Project Reference 2016
Mous Codeman
 
Moreblue Beamer
Moreblue BeamerMoreblue Beamer
Moreblue Beamer
Hirwanto Iwan
 
Antykwa toruńska condensed light
Antykwa toruńska condensed lightAntykwa toruńska condensed light
Antykwa toruńska condensed light
Hirwanto Iwan
 
FACTORING CRYPTOSYSTEM MODULI WHEN THE CO-FACTORS DIFFERENCE IS BOUNDED
FACTORING CRYPTOSYSTEM MODULI WHEN THE CO-FACTORS DIFFERENCE IS BOUNDEDFACTORING CRYPTOSYSTEM MODULI WHEN THE CO-FACTORS DIFFERENCE IS BOUNDED
FACTORING CRYPTOSYSTEM MODULI WHEN THE CO-FACTORS DIFFERENCE IS BOUNDED
Zac Darcy
 
Shatrunjay Yatra Presentation Final Compilation 03.24.12
Shatrunjay Yatra Presentation Final Compilation 03.24.12Shatrunjay Yatra Presentation Final Compilation 03.24.12
Shatrunjay Yatra Presentation Final Compilation 03.24.12
JAINA2013
 
Trends in-mgmt-research-july-2012-sgd
Trends in-mgmt-research-july-2012-sgdTrends in-mgmt-research-july-2012-sgd
Trends in-mgmt-research-july-2012-sgd
Sanjeev Deshmukh
 
ON ESTIMATION OF TIME SCALES OF MASS TRANSPORT IN INHOMOGENOUS MATERIAL
ON ESTIMATION OF TIME SCALES OF MASS TRANSPORT IN INHOMOGENOUS MATERIALON ESTIMATION OF TIME SCALES OF MASS TRANSPORT IN INHOMOGENOUS MATERIAL
ON ESTIMATION OF TIME SCALES OF MASS TRANSPORT IN INHOMOGENOUS MATERIAL
Zac Darcy
 
Ledere som mister jobben
Ledere som mister jobbenLedere som mister jobben
Ledere som mister jobben
Kristine Hovda
 

Viewers also liked (19)

Charter bt
Charter btCharter bt
Charter bt
 
เต้
เต้เต้
เต้
 
Resume Film Red Cliff
Resume Film Red CliffResume Film Red Cliff
Resume Film Red Cliff
 
Iwona condensed
Iwona condensedIwona condensed
Iwona condensed
 
Pengantar la tex
Pengantar la texPengantar la tex
Pengantar la tex
 
Telecomunicacions
TelecomunicacionsTelecomunicacions
Telecomunicacions
 
เต้
เต้เต้
เต้
 
APPLICATION OF ARTIFICIAL NEURAL NETWORKS IN ESTIMATING PARTICIPATION IN ELEC...
APPLICATION OF ARTIFICIAL NEURAL NETWORKS IN ESTIMATING PARTICIPATION IN ELEC...APPLICATION OF ARTIFICIAL NEURAL NETWORKS IN ESTIMATING PARTICIPATION IN ELEC...
APPLICATION OF ARTIFICIAL NEURAL NETWORKS IN ESTIMATING PARTICIPATION IN ELEC...
 
Cultuurforum 2016 Wikipedia: Een platform om levend erfgoed te documenteren 1
Cultuurforum 2016 Wikipedia: Een platform om levend erfgoed te documenteren 1Cultuurforum 2016 Wikipedia: Een platform om levend erfgoed te documenteren 1
Cultuurforum 2016 Wikipedia: Een platform om levend erfgoed te documenteren 1
 
Museums & Wikidata - studiedag Rubenianum
Museums & Wikidata - studiedag RubenianumMuseums & Wikidata - studiedag Rubenianum
Museums & Wikidata - studiedag Rubenianum
 
VEWA Project Reference 2016
VEWA Project Reference 2016VEWA Project Reference 2016
VEWA Project Reference 2016
 
Moreblue Beamer
Moreblue BeamerMoreblue Beamer
Moreblue Beamer
 
Antykwa toruńska condensed light
Antykwa toruńska condensed lightAntykwa toruńska condensed light
Antykwa toruńska condensed light
 
FACTORING CRYPTOSYSTEM MODULI WHEN THE CO-FACTORS DIFFERENCE IS BOUNDED
FACTORING CRYPTOSYSTEM MODULI WHEN THE CO-FACTORS DIFFERENCE IS BOUNDEDFACTORING CRYPTOSYSTEM MODULI WHEN THE CO-FACTORS DIFFERENCE IS BOUNDED
FACTORING CRYPTOSYSTEM MODULI WHEN THE CO-FACTORS DIFFERENCE IS BOUNDED
 
Shatrunjay Yatra Presentation Final Compilation 03.24.12
Shatrunjay Yatra Presentation Final Compilation 03.24.12Shatrunjay Yatra Presentation Final Compilation 03.24.12
Shatrunjay Yatra Presentation Final Compilation 03.24.12
 
Trends in-mgmt-research-july-2012-sgd
Trends in-mgmt-research-july-2012-sgdTrends in-mgmt-research-july-2012-sgd
Trends in-mgmt-research-july-2012-sgd
 
Bab i uas b.indo
Bab i uas b.indoBab i uas b.indo
Bab i uas b.indo
 
ON ESTIMATION OF TIME SCALES OF MASS TRANSPORT IN INHOMOGENOUS MATERIAL
ON ESTIMATION OF TIME SCALES OF MASS TRANSPORT IN INHOMOGENOUS MATERIALON ESTIMATION OF TIME SCALES OF MASS TRANSPORT IN INHOMOGENOUS MATERIAL
ON ESTIMATION OF TIME SCALES OF MASS TRANSPORT IN INHOMOGENOUS MATERIAL
 
Ledere som mister jobben
Ledere som mister jobbenLedere som mister jobben
Ledere som mister jobben
 

Similar to Chap04 scr

Latex Tutorial
Latex TutorialLatex Tutorial
Latex Tutorial
Mamoon R Malik
 
Latex Introduction for Beginners
Latex Introduction for BeginnersLatex Introduction for Beginners
Latex Introduction for Beginners
ssuser9e8fa4
 
Python_Unit_III.pptx
Python_Unit_III.pptxPython_Unit_III.pptx
Python_Unit_III.pptx
ssuserc755f1
 
LaTeX Cheat Sheet
LaTeX Cheat SheetLaTeX Cheat Sheet
LaTeX Cheat Sheet
Hirwanto Iwan
 
Chap16 scr
Chap16 scrChap16 scr
Chap16 scr
Hirwanto Iwan
 
Latex for beginners
Latex for beginnersLatex for beginners
Latex for beginners
Kaushik Naik
 
In the Notes on Programming Language Syntax page, an example par.docx
In the Notes on Programming Language Syntax page, an example par.docxIn the Notes on Programming Language Syntax page, an example par.docx
In the Notes on Programming Language Syntax page, an example par.docx
mecklenburgstrelitzh
 
La tex basics
La tex basicsLa tex basics
La tex basics
awverret
 
Introduction To Python
Introduction To  PythonIntroduction To  Python
Introduction To Pythonshailaja30
 
Ch3_Syntax Analysis.pptx
Ch3_Syntax Analysis.pptxCh3_Syntax Analysis.pptx
Ch3_Syntax Analysis.pptx
TameneTamire
 
11 Introduction to lists.pptx
11 Introduction to lists.pptx11 Introduction to lists.pptx
11 Introduction to lists.pptx
ssuser8e50d8
 
latex_intro.ppt
latex_intro.pptlatex_intro.ppt
latex_intro.ppt
MohamedHeddar
 

Similar to Chap04 scr (20)

Chap03 scr
Chap03 scrChap03 scr
Chap03 scr
 
Chap05 scr
Chap05 scrChap05 scr
Chap05 scr
 
Chap10 scr
Chap10 scrChap10 scr
Chap10 scr
 
Latex Tutorial
Latex TutorialLatex Tutorial
Latex Tutorial
 
Latex Introduction for Beginners
Latex Introduction for BeginnersLatex Introduction for Beginners
Latex Introduction for Beginners
 
Python_Unit_III.pptx
Python_Unit_III.pptxPython_Unit_III.pptx
Python_Unit_III.pptx
 
Chap14 scr
Chap14 scrChap14 scr
Chap14 scr
 
Chap08 scr
Chap08 scrChap08 scr
Chap08 scr
 
Chap06 scr
Chap06 scrChap06 scr
Chap06 scr
 
LaTeX Cheat Sheet
LaTeX Cheat Sheet LaTeX Cheat Sheet
LaTeX Cheat Sheet
 
LaTeX Cheat Sheet
LaTeX Cheat SheetLaTeX Cheat Sheet
LaTeX Cheat Sheet
 
Chap16 scr
Chap16 scrChap16 scr
Chap16 scr
 
Latex for beginners
Latex for beginnersLatex for beginners
Latex for beginners
 
In the Notes on Programming Language Syntax page, an example par.docx
In the Notes on Programming Language Syntax page, an example par.docxIn the Notes on Programming Language Syntax page, an example par.docx
In the Notes on Programming Language Syntax page, an example par.docx
 
Chap07 scr
Chap07 scrChap07 scr
Chap07 scr
 
La tex basics
La tex basicsLa tex basics
La tex basics
 
Introduction To Python
Introduction To  PythonIntroduction To  Python
Introduction To Python
 
Ch3_Syntax Analysis.pptx
Ch3_Syntax Analysis.pptxCh3_Syntax Analysis.pptx
Ch3_Syntax Analysis.pptx
 
11 Introduction to lists.pptx
11 Introduction to lists.pptx11 Introduction to lists.pptx
11 Introduction to lists.pptx
 
latex_intro.ppt
latex_intro.pptlatex_intro.ppt
latex_intro.ppt
 

More from Hirwanto Iwan

01. integral fungsi aljabar
01. integral fungsi aljabar01. integral fungsi aljabar
01. integral fungsi aljabar
Hirwanto 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 Serang
Hirwanto 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 IPA
Hirwanto 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 IPS
Hirwanto 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 IPA
Hirwanto Iwan
 
Fitur Baru WinEdt 9.1
Fitur Baru WinEdt 9.1Fitur Baru WinEdt 9.1
Fitur Baru WinEdt 9.1
Hirwanto Iwan
 
Pemasangan WinEdt 9.1
Pemasangan WinEdt 9.1Pemasangan WinEdt 9.1
Pemasangan WinEdt 9.1
Hirwanto Iwan
 
Kumpulan Soal UM UGM
Kumpulan Soal UM UGMKumpulan Soal UM UGM
Kumpulan Soal UM UGM
Hirwanto Iwan
 
Membuat Dokumen LaTeX Edisi ke - 33
Membuat Dokumen LaTeX Edisi ke - 33Membuat Dokumen LaTeX Edisi ke - 33
Membuat Dokumen LaTeX Edisi ke - 33
Hirwanto Iwan
 
LATEX OR INDESIGN
LATEX OR INDESIGN LATEX OR INDESIGN
LATEX OR INDESIGN
Hirwanto Iwan
 
AGH Beamer
AGH BeamerAGH Beamer
AGH Beamer
Hirwanto Iwan
 
AFIT Beamer
AFIT BeamerAFIT Beamer
AFIT Beamer
Hirwanto Iwan
 
Hackd Beamer
Hackd BeamerHackd Beamer
Hackd Beamer
Hirwanto Iwan
 
LUH Beamer
LUH BeamerLUH Beamer
LUH Beamer
Hirwanto Iwan
 
Cambridge Beamer
Cambridge BeamerCambridge Beamer
Cambridge Beamer
Hirwanto Iwan
 
ESOP Beamer
ESOP BeamerESOP Beamer
ESOP Beamer
Hirwanto Iwan
 
AP Beamer
AP BeamerAP Beamer
AP Beamer
Hirwanto Iwan
 
Naked Beamer
Naked BeamerNaked Beamer
Naked Beamer
Hirwanto Iwan
 
TUDelft Beamer
TUDelft BeamerTUDelft Beamer
TUDelft Beamer
Hirwanto Iwan
 

More from 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
 

Recently uploaded

To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 

Recently uploaded (20)

To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 

Chap04 scr

  • 1. Indian TEX Users Group URL: http://www.river-valley.com/tug Lists 4 Displayed text Title Page A On-line Tutorial on LTEX The Tutorial Team Indian TEX Users Group, sjp Buildings, Cotton Hills Trivandrum 695014, india 2000 Prof. (Dr.) K. S. S. Nambooripad, Director, Center for Mathematical Sciences, Trivandrum, (Editor); Dr. E. Krishnan, Reader in Mathematics, University College, Trivandrum; 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 TUGIndia Tutorial team Page 1 of 8 Go Back Full Screen 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 c 2000, Indian TEX Users Group. This document may be distributed under the terms A A of the L TEX Project Public License, as described in lppl.txt in the base L TEX distribution, either version 1.0 or, at your option, any later version Close Quit
  • 2. 4 Lists, etc. Lists Displayed text 4.1. Lists Title Page There are three list environments available for producing formatted lists: begin{enumerate} begin{itemize} begin{description} 4.1.1. list text list text list text end{enumerate} end{itemize} end{description} Sample enumerate Page 2 of 8 (1) The labels consists of sequential numbers. (2) The numbers starts at 1 with every call to the enumerate environment. Go Back begin{enumerate} item The labels consists of sequential numbers. item The numbers starts at 1 with every call to the enumerate environment. end{enumerate} Full Screen Close Quit
  • 3. 4.1.2. Sample itemize • The individual entries are indicated with a black dot, so-called bullet. • The text in the entries may be of any length. begin{itemize} item The individual entries are indicated with a black dot, a so-called bullet. item The text in the entries may be of any length. end{itemize} 4.1.3. Lists Displayed text Title Page Sample description Purpose: This environment is appropriate when a number of words or expressions are to be defined. This environment is appropriate when a number of words or expressions are to be defined. Example: It may also be used as an author list in the bibliography. begin{description} item[Purpose:] This environment is appropriate when a number of words or expressions are to be defined. This environment is appropriate when a number of words or expressions are to be defined. item[Example:] It may also be used as an author list in the bibliography. end{description} Page 3 of 8 Go Back Full Screen Close Quit
  • 4. 4.1.4. Nesting of lists The above lists may be included within one another, either mixed or of one type, to a depth of four levels. An example of a nested list with mixed types: • The itemize label at the first level is a bullet. (1) The numbering is with Arabic numerals since this is ... This is the third level of the nesting, but the ... (a) And this is the fourth level of the overall ... (b) Thus the numbering is with lower case letters ... The label at this level is a long dash. (2) Every list should contain at least two points. Lists Displayed text Title Page • Blank lines ahead of an ... begin{itemize} item The {tt itemize} label at the first level is a bullet. begin{enumerate} item The numbering is with Arabic numerals since this is ... begin{itemize} item This is the third level of the nesting, but the ... begin{enumerate} item And this is the fourth level of the overall ... item Thus the numbering is with lower case letters ... end{enumerate} item The label at this level is a long dash. end{itemize} item Every list should contain at least two points. end{enumerate} item Blank lines ahead of an ... end{itemize} Page 4 of 8 Go Back Full Screen Close Quit
  • 5. 4.1.5. Manipulation of list numbers (1) First level item (2) First level item (a) Second level item (b) Second level item i. Third level item ii. Third level item A. Fourth level item B. Fourth level item iii. Third level item iv. Third level item (c) (d) (3) First (4) First Second level item Second level item level item level item The default numbering scheme of list level 1 is Arabic numbers, level 2 is lowercase letters, level 3 is lower case Roman numeral and level 4 is uppercase letters. These numbers can be changed by redefining the commands that typeset the numbers of various list levels. theenumi, theenumii, theenumiii and theenumiv correspond to the number label in different levels of enumerated lists. labelenumi, labelenumii, labelenumiii and labelenumiv relate to the attributes of the number label in different levels of itemized lists. If you want to change the default number scheme of the first level of enumerated list to bold uppercase Roman numeral enclosed within a pair of square brackets, you might issue the following command just before the start of the begin{enumerate} command: Lists Displayed text Title Page Page 5 of 8 Go Back renewcommandtheenumi{Roman{enumi}} renewcommandlabelenumi{[{bfseriestheenumi}]} Full Screen [I] First level item [II] First level item The commands arabic, roman, Roman, alph, Alph will yield Arabic number (1, Close Quit
  • 6. 2, 3, . . . ), lowercase Roman numeral (i, ii, iii, . . . ), uppercase Roman numeral (I, II, III, . . . ), lowercase alphabet (a, b, c, . . . ) and uppercase alphabet (A, B, C, . . . ) respectively. 4.1.6. Manipulation of list labels Lists • First level item • First level item – Second level item – Second level item ∗ Third level item ∗ Third level item · Fourth level item · Fourth level item ∗ Third level item ∗ Third level item – – • First • First Second level item Second level item level item level item The default label scheme of itemized list level 1 is textbullet (•), level 2 is textendash (–) , level 3 is textasteriskcentered (∗) and for level 4 is textperiodcentered (·). These labels can be changed by redefining the commands that typeset the labels labelitemi, of various list levels. labelitemii, labelitemiii and labelitemiv correspond to the labels in different levels of itemized lists. If you want to change the default label scheme of the first level of itemized list to unfilled square, you might issue the following command just before the begin{itemize} command: renewcommandlabelitemi{$square$} First level item Displayed text Title Page Page 6 of 8 Go Back Full Screen Close First level item Quit
  • 7. 4.2. Displayed text Quite often we might be needed to typeset text material in a different way than the ordinary sentences to highlight its importance. These are normally called displayed A text. L TEX provides three environments, quote, quotation and verse for displaying your text, the normal usage is shown below: Lists Displayed text begin{quote} begin{quotation} begin{verse} text text text end{quote} end{quotation} end{verse} Title Page A section of text will be displayed by indenting it by an equal amount on both sides, with these environments. 4.2.1. Quote and quotation The example of quote environment given below is self explanatory. The left box gives you the code and right one is the typeset output. ... example of a short displayed quotation. begin{quote} It’s a good idea to make your input file as easy to read as possible. end{quote} The following is an example of a short displayed quotation. It’s a good idea to make your input file as easy to read as possible. Page 7 of 8 Go Back Full Screen Close quote is limited to a single paragraph, while quotation can be used to display texts running to paragraphs. Quit
  • 8. 4.2.2. Poetry Poetry is displayed with the verse environment. A new stanza is begun with one or more blank lines; lines within a stanza are separated by command. begin{verse} There is an environment for verse Whose features some poets will curse For instead of making Them do emph{all} line breaking, It allows them to put many words on a line when they’d rather be forced to be terse. end{verse} Lists Displayed text Title Page The above code will generate the following output: Page 8 of 8 There is an environment for verse Whose features some poets will curse For instead of making Them do all line breaking, It allows them to put many words on a line when they’d rather be forced to be terse. Go Back Full Screen Close Quit