SlideShare a Scribd company logo
1 of 47
Download to read offline
LATEX 
Tutorial 
Jhoirene B Clemente 
Sanggumay Residence Hall 
University of the Philippines Diliman 
Nov 14, 2014
34 
LATEXTutorial 
JB Clemente 
2 Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
What is LATEX? 
1. Latex is a document preparation system 
2. Pronunciation: “LAY-tek" or “LAH-tek" (definitely not 
"“LAH-teks") 
3. Markup language for mathematical symbols and formulas
34 
LATEXTutorial 
JB Clemente 
3 Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
WYSIWIYG Word Processors 
What You See Is What You Get (WYSIWYG)
34 
LATEXTutorial 
JB Clemente 
4 Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
WYSIWYG Word Processors vs Markup
34 
LATEXTutorial 
JB Clemente 
4 Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
WYSIWYG Word Processors vs Markup
34 
LATEXTutorial 
JB Clemente 
5 Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Why LATEX? 
I Mathematical typesetting 
I Superior typographic quality 
I Output device independence 
I Portability 
I Document longevity 
I Macros and other programmatic features 
I Formatting presets are automatic
34 
LATEXTutorial 
JB Clemente 
6 Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
What is bad about LATEX? 
I Difficulty knowing/remembering markup commands 
I Previewing delay 
I Possibility of syntax errors 
I Adding new fonts
34 
LATEXTutorial 
JB Clemente 
Introduction 
7 Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Getting Started: What you need to Install 
You need the following 
1. LATEXDistribution: MacTeX, LaTeX, MikTeX 
2. TeX Editor: notepad, gedit, TeXmaker, etc. 
3. Document Previewer: Adobe Acrobat reader, Foxit, Preview
34 
LATEXTutorial 
JB Clemente 
Introduction 
8 Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
General Document Structure 
documentclass{article} 
. 
PREAMBLE 
. 
begin{document} 
. 
BODY 
. 
end{document}
34 
LATEXTutorial 
JB Clemente 
Introduction 
8 Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
General Document Structure 
documentclass{article} 
. 
PREAMBLE 
. 
begin{document} 
. 
BODY 
. 
end{document} 
Definition (Preamble) 
Consists of the overall, document-wide LaTeX formatting 
commands
34 
LATEXTutorial 
JB Clemente 
Introduction 
8 Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
General Document Structure 
documentclass{article} 
. 
PREAMBLE 
. 
begin{document} 
. 
BODY 
. 
end{document} 
Definition (Preamble) 
Consists of the overall, document-wide LaTeX formatting 
commands 
Definition (Body) 
Contains the text of the document and text formatting commands
34 
LATEXTutorial 
JB Clemente 
Introduction 
9 Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
General Principles 
1. Spaces and line breaks are not important. A blank line starts 
a new paragraph, however.
34 
LATEXTutorial 
JB Clemente 
Introduction 
9 Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
General Principles 
1. Spaces and line breaks are not important. A blank line starts 
a new paragraph, however. 
2. Commands all start with backslash: 
documentclass
34 
LATEXTutorial 
JB Clemente 
Introduction 
9 Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
General Principles 
1. Spaces and line breaks are not important. A blank line starts 
a new paragraph, however. 
2. Commands all start with backslash: 
documentclass 
3. Braces are used for “arguments" 
documentclass{article}
34 
LATEXTutorial 
JB Clemente 
Introduction 
9 Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
General Principles 
1. Spaces and line breaks are not important. A blank line starts 
a new paragraph, however. 
2. Commands all start with backslash: 
documentclass 
3. Braces are used for “arguments" 
documentclass{article} 
4. Brackets are used for“optional arguments": 
documentclass[11pt]{article}
34 
LATEXTutorial 
JB Clemente 
Introduction 
9 Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
General Principles 
1. Spaces and line breaks are not important. A blank line starts 
a new paragraph, however. 
2. Commands all start with backslash: 
documentclass 
3. Braces are used for “arguments" 
documentclass{article} 
4. Brackets are used for“optional arguments": 
documentclass[11pt]{article} 
5. Commands are case sensitive. 
documentclass not DocumentClass
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
10 Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Document Types 
1. article - for short documents for publication 
2. report - for longer technical documents; like articles, but has 
chapters 
3. book - for large documents, such as books 
4. letter - for writing letters 
5. Beamer - for presentation slides
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
11 Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Simple Article 
documentclass{article} 
begin{document} 
% Content 
end{document}
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
12 Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Simple Article with Preamble 
Commands for specifying 
1. Title 
2. Author 
3. Date 
title{LaTex Tutorial} 
author{Jhoirene B Clemente} 
date{Nov 20, 2014}
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
12 Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Simple Article with Preamble 
Commands for specifying 
1. Title 
2. Author 
3. Date 
title{LaTex Tutorial} 
author{Jhoirene B Clemente} 
date{Nov 20, 2014} 
To include title, author, and date in the document. 
We will use the command 
maketitle
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
13 Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Environments 
Environment declaration 
begin{<environment>} 
.... 
end{<environment>}
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
13 Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Environments 
Environment declaration 
begin{<environment>} 
.... 
end{<environment>} 
Basic Environments 
I document 
I enumerate 
I itemize 
I figure 
I table
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
14 Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Example Environment: list with bullets 
Basic environments 
begin{itemize} 
item document 
item itemize 
item enumerate 
item figure 
item table 
end{itemize}
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
15 Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Example Environment: enumerate 
Basic environments 
begin{enumerate} 
item document 
item itemize 
item enumerate 
item figure 
item table 
end{enumerate}
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
16 Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Example Environment: enumerate 
Basic environments 
1. document 
2. itemize 
3. enumerate 
4. figure 
5. table
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
17 Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Other useful environments 
1. definition 
2. theorem 
3. proof 
4. lemma 
5. claim
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
18 Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Basic Text Formatting 
The quick brown fox jump over the lazy dog
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
18 Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Basic Text Formatting 
The quick brown fox jump over the lazy dog 
The textbf{quick} brown textit{fox} 
jump over the underline{lazy} 
textbf{textit{dog}}
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
19 Typesetting 
Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Other Text Formatting Commands
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
20 Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Math mode usepackage{amsmath} 
Let f be the function defined by f (x) = 3x + 7, and let 
a be a positive real number.
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
20 Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Math mode usepackage{amsmath} 
Let f be the function defined by f (x) = 3x + 7, and let 
a be a positive real number.
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
20 Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Math mode usepackage{amsmath} 
Let f be the function defined by f (x) = 3x + 7, and let 
a be a positive real number.
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
21 Math Mode 
Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Math mode usepackage{amsmath} 
cos(2) = cos2  − sin2  
limx!1 exp(−x) = 0 
a mod b 
kn+1 = n2 + k2 
n − kn−1 
n! 
k!(n−k)! = 
nk 
 
x  a (mod b)
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
22 Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Citation and References
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
22 Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Citation and References
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
23 Citation and References 
Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Bibfiles 
Collection of bibliographic entries stored in “filename.bib 
Figure: Sample bibfile
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
24 Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Using Style Files
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
25 Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Using Style Files
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
26 Using Style Files 
Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
LATEXStyle File 
You are recommended to use the Elsevier article class elsarticle.cls 
http://www.ctan.org/tex-archive/macros/latex/ 
contrib/elsarticle to prepare your manuscript and BibTeX 
(http://www.bibtex.org) to generate your bibliography. For 
detailed submission instructions, templates and other information 
on LaTeX, see http://www.elsevier.com/latex.
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
27 Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Easier Option: LYX 
What You See Is What You Mean
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
28 Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Easier Option: LYX
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
29 Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Easier Option: LYX
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
30 Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
TeX with Collaboration
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
31 Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
TeX with Collaboration
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
32 Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Must have Apps
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
33 Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
Thank you for listening.
34 
LATEXTutorial 
JB Clemente 
Introduction 
Getting Started 
Document Types 
Typesetting 
Math Mode 
Citation and References 
Using Style Files 
34 Other Tools 
References 
Sanggumay Residence Hall 
University of the Philippines 
Diliman 
Nov 13, 2014 
References

More Related Content

What's hot

LaTeX Introduction for Word Users
LaTeX Introduction for Word UsersLaTeX Introduction for Word Users
LaTeX Introduction for Word UsersGuy K. Kloss
 
Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latextran dinh
 
Editing documents with LaTeX
Editing documents with LaTeXEditing documents with LaTeX
Editing documents with LaTeXLaura M. Castro
 
Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesMohamed Alrshah
 
Latex Introduction for Beginners
Latex Introduction for BeginnersLatex Introduction for Beginners
Latex Introduction for Beginnersssuser9e8fa4
 
How to make a presentation with LATEX? Introduction to BeamerPresentation ben...
How to make a presentation with LATEX? Introduction to BeamerPresentation ben...How to make a presentation with LATEX? Introduction to BeamerPresentation ben...
How to make a presentation with LATEX? Introduction to BeamerPresentation ben...researchcenterm
 
Research 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeXResearch 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeXJia-Bin Huang
 
Basic Latex Typesetting - Session 1
Basic Latex Typesetting - Session 1Basic Latex Typesetting - Session 1
Basic Latex Typesetting - Session 1Kiel Granada
 
scientific writing 01 - latex
scientific writing   01 - latexscientific writing   01 - latex
scientific writing 01 - latexLeo Chen
 
Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Suddhasheel GHOSH, PhD
 
Modules and packages in python
Modules and packages in pythonModules and packages in python
Modules and packages in pythonTMARAGATHAM
 

What's hot (20)

LaTeX for beginners
LaTeX for beginnersLaTeX for beginners
LaTeX for beginners
 
Introduction to LaTeX
Introduction to LaTeXIntroduction to LaTeX
Introduction to LaTeX
 
LaTeX Basics
LaTeX BasicsLaTeX Basics
LaTeX Basics
 
Latex workshop
Latex workshopLatex workshop
Latex workshop
 
LaTeX Introduction for Word Users
LaTeX Introduction for Word UsersLaTeX Introduction for Word Users
LaTeX Introduction for Word Users
 
Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latex
 
Editing documents with LaTeX
Editing documents with LaTeXEditing documents with LaTeX
Editing documents with LaTeX
 
Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and Practices
 
Latex Introduction for Beginners
Latex Introduction for BeginnersLatex Introduction for Beginners
Latex Introduction for Beginners
 
LaTeX Survival Guide
LaTeX Survival Guide LaTeX Survival Guide
LaTeX Survival Guide
 
How to make a presentation with LATEX? Introduction to BeamerPresentation ben...
How to make a presentation with LATEX? Introduction to BeamerPresentation ben...How to make a presentation with LATEX? Introduction to BeamerPresentation ben...
How to make a presentation with LATEX? Introduction to BeamerPresentation ben...
 
Research 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeXResearch 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeX
 
Latex
LatexLatex
Latex
 
LaTeX-Presentation
LaTeX-PresentationLaTeX-Presentation
LaTeX-Presentation
 
Basic Latex Typesetting - Session 1
Basic Latex Typesetting - Session 1Basic Latex Typesetting - Session 1
Basic Latex Typesetting - Session 1
 
Latex Notes
Latex NotesLatex Notes
Latex Notes
 
scientific writing 01 - latex
scientific writing   01 - latexscientific writing   01 - latex
scientific writing 01 - latex
 
Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1
 
Learn Latex
Learn LatexLearn Latex
Learn Latex
 
Modules and packages in python
Modules and packages in pythonModules and packages in python
Modules and packages in python
 

Viewers also liked

How to make boxed text with LaTeX
How to make boxed text with LaTeXHow to make boxed text with LaTeX
How to make boxed text with LaTeXVesa Linja-aho
 
LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners Tilak Devaraj
 
How to use LaTeX and Beamer to prepare presentation for Slideshare
How to use LaTeX and Beamer to prepare presentation for SlideshareHow to use LaTeX and Beamer to prepare presentation for Slideshare
How to use LaTeX and Beamer to prepare presentation for SlideshareVesa Linja-aho
 
Data Structures and Algorithms
Data Structures and AlgorithmsData Structures and Algorithms
Data Structures and AlgorithmsPierre Vigneras
 
Matlab Introduction
Matlab IntroductionMatlab Introduction
Matlab Introductionideas2ignite
 
Cours d’approfondissement de LaTeX (intermédiaire-avancé)
Cours d’approfondissement de LaTeX (intermédiaire-avancé)Cours d’approfondissement de LaTeX (intermédiaire-avancé)
Cours d’approfondissement de LaTeX (intermédiaire-avancé)Adrien Barbaresi
 
Cours d’introduction à LaTeX
Cours d’introduction à LaTeXCours d’introduction à LaTeX
Cours d’introduction à LaTeXAdrien Barbaresi
 

Viewers also liked (14)

How to make boxed text with LaTeX
How to make boxed text with LaTeXHow to make boxed text with LaTeX
How to make boxed text with LaTeX
 
La tex
La texLa tex
La tex
 
Latex
LatexLatex
Latex
 
LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners
 
Beamer ppt
Beamer pptBeamer ppt
Beamer ppt
 
Latex crash course
Latex crash courseLatex crash course
Latex crash course
 
Tracing and awk in ns2
Tracing and awk in ns2Tracing and awk in ns2
Tracing and awk in ns2
 
How to use LaTeX and Beamer to prepare presentation for Slideshare
How to use LaTeX and Beamer to prepare presentation for SlideshareHow to use LaTeX and Beamer to prepare presentation for Slideshare
How to use LaTeX and Beamer to prepare presentation for Slideshare
 
Data Structures and Algorithms
Data Structures and AlgorithmsData Structures and Algorithms
Data Structures and Algorithms
 
Matlab Introduction
Matlab IntroductionMatlab Introduction
Matlab Introduction
 
Getting started with image processing using Matlab
Getting started with image processing using MatlabGetting started with image processing using Matlab
Getting started with image processing using Matlab
 
Data Structure
Data StructureData Structure
Data Structure
 
Cours d’approfondissement de LaTeX (intermédiaire-avancé)
Cours d’approfondissement de LaTeX (intermédiaire-avancé)Cours d’approfondissement de LaTeX (intermédiaire-avancé)
Cours d’approfondissement de LaTeX (intermédiaire-avancé)
 
Cours d’introduction à LaTeX
Cours d’introduction à LaTeXCours d’introduction à LaTeX
Cours d’introduction à LaTeX
 

Similar to LaTeX Tutorial Guide for Beginners

Document Development Life Cycle
Document Development Life CycleDocument Development Life Cycle
Document Development Life CycleIsha Suri
 
Writing research papers and articles
Writing research papers and articlesWriting research papers and articles
Writing research papers and articlesDrDivakarSingh
 
Academic Writing A Practical Guide For Students
Academic Writing A Practical Guide For StudentsAcademic Writing A Practical Guide For Students
Academic Writing A Practical Guide For StudentsWendy Berg
 
How to write research paper in cse
How to write research paper in cseHow to write research paper in cse
How to write research paper in cseLi Di
 
SEQFILE1.PPT
SEQFILE1.PPTSEQFILE1.PPT
SEQFILE1.PPTloverkodi
 
Documenting Good Practices in School: Part 3
Documenting Good Practices in School: Part 3Documenting Good Practices in School: Part 3
Documenting Good Practices in School: Part 3JoseRadinGarduque2
 
Tips for teaching writing
Tips for teaching writingTips for teaching writing
Tips for teaching writingCarly Friesen
 
INTERPRETER AND APPLIED DEVELOPMENT ENVIRONMENT FOR LEARNING CONCEPTS OF OBJE...
INTERPRETER AND APPLIED DEVELOPMENT ENVIRONMENT FOR LEARNING CONCEPTS OF OBJE...INTERPRETER AND APPLIED DEVELOPMENT ENVIRONMENT FOR LEARNING CONCEPTS OF OBJE...
INTERPRETER AND APPLIED DEVELOPMENT ENVIRONMENT FOR LEARNING CONCEPTS OF OBJE...ijpla
 
10 Best Practices for Writing Documentation (For Those Who Would Rather Do An...
10 Best Practices for Writing Documentation (For Those Who Would Rather Do An...10 Best Practices for Writing Documentation (For Those Who Would Rather Do An...
10 Best Practices for Writing Documentation (For Those Who Would Rather Do An...Lauren Hayward Schaefer
 
Writing paper workshopwritingacademicpaper-telkomuniv-15102015
Writing paper workshopwritingacademicpaper-telkomuniv-15102015Writing paper workshopwritingacademicpaper-telkomuniv-15102015
Writing paper workshopwritingacademicpaper-telkomuniv-15102015ramdianakin
 
2012 templatesA Template with Ideas for the structure of the Co.docx
2012 templatesA Template with Ideas for the structure of the Co.docx2012 templatesA Template with Ideas for the structure of the Co.docx
2012 templatesA Template with Ideas for the structure of the Co.docxfelicidaddinwoodie
 
Academic Writing A Handbook For International Students 2Nd Edition
Academic Writing A Handbook For International Students 2Nd EditionAcademic Writing A Handbook For International Students 2Nd Edition
Academic Writing A Handbook For International Students 2Nd EditionScott Donald
 
Academic Writing A Handbook For International Students Second Edition
Academic Writing A Handbook For International Students Second EditionAcademic Writing A Handbook For International Students Second Edition
Academic Writing A Handbook For International Students Second EditionTye Rausch
 
academic writing BOOK.pdf
academic writing BOOK.pdfacademic writing BOOK.pdf
academic writing BOOK.pdfBria Davis
 
Academic Writing A Handbook For International Students
Academic Writing A Handbook For International StudentsAcademic Writing A Handbook For International Students
Academic Writing A Handbook For International StudentsShannon Green
 
Academic Writing_ The Art of Paraphrasing.pptx
Academic Writing_ The Art of Paraphrasing.pptxAcademic Writing_ The Art of Paraphrasing.pptx
Academic Writing_ The Art of Paraphrasing.pptxAniqAzman3
 

Similar to LaTeX Tutorial Guide for Beginners (20)

1iCollege.docx
1iCollege.docx1iCollege.docx
1iCollege.docx
 
Document Development Life Cycle
Document Development Life CycleDocument Development Life Cycle
Document Development Life Cycle
 
Writing research papers and articles
Writing research papers and articlesWriting research papers and articles
Writing research papers and articles
 
Research proposal
Research proposalResearch proposal
Research proposal
 
Academic Writing A Practical Guide For Students
Academic Writing A Practical Guide For StudentsAcademic Writing A Practical Guide For Students
Academic Writing A Practical Guide For Students
 
How to write a research paper
How to write a research paperHow to write a research paper
How to write a research paper
 
How to write research paper in cse
How to write research paper in cseHow to write research paper in cse
How to write research paper in cse
 
SEQFILE1.PPT
SEQFILE1.PPTSEQFILE1.PPT
SEQFILE1.PPT
 
Documenting Good Practices in School: Part 3
Documenting Good Practices in School: Part 3Documenting Good Practices in School: Part 3
Documenting Good Practices in School: Part 3
 
Tips for teaching writing
Tips for teaching writingTips for teaching writing
Tips for teaching writing
 
INTERPRETER AND APPLIED DEVELOPMENT ENVIRONMENT FOR LEARNING CONCEPTS OF OBJE...
INTERPRETER AND APPLIED DEVELOPMENT ENVIRONMENT FOR LEARNING CONCEPTS OF OBJE...INTERPRETER AND APPLIED DEVELOPMENT ENVIRONMENT FOR LEARNING CONCEPTS OF OBJE...
INTERPRETER AND APPLIED DEVELOPMENT ENVIRONMENT FOR LEARNING CONCEPTS OF OBJE...
 
10 Best Practices for Writing Documentation (For Those Who Would Rather Do An...
10 Best Practices for Writing Documentation (For Those Who Would Rather Do An...10 Best Practices for Writing Documentation (For Those Who Would Rather Do An...
10 Best Practices for Writing Documentation (For Those Who Would Rather Do An...
 
note_taking_facilitator_guide(goerzen2011)
note_taking_facilitator_guide(goerzen2011)note_taking_facilitator_guide(goerzen2011)
note_taking_facilitator_guide(goerzen2011)
 
Writing paper workshopwritingacademicpaper-telkomuniv-15102015
Writing paper workshopwritingacademicpaper-telkomuniv-15102015Writing paper workshopwritingacademicpaper-telkomuniv-15102015
Writing paper workshopwritingacademicpaper-telkomuniv-15102015
 
2012 templatesA Template with Ideas for the structure of the Co.docx
2012 templatesA Template with Ideas for the structure of the Co.docx2012 templatesA Template with Ideas for the structure of the Co.docx
2012 templatesA Template with Ideas for the structure of the Co.docx
 
Academic Writing A Handbook For International Students 2Nd Edition
Academic Writing A Handbook For International Students 2Nd EditionAcademic Writing A Handbook For International Students 2Nd Edition
Academic Writing A Handbook For International Students 2Nd Edition
 
Academic Writing A Handbook For International Students Second Edition
Academic Writing A Handbook For International Students Second EditionAcademic Writing A Handbook For International Students Second Edition
Academic Writing A Handbook For International Students Second Edition
 
academic writing BOOK.pdf
academic writing BOOK.pdfacademic writing BOOK.pdf
academic writing BOOK.pdf
 
Academic Writing A Handbook For International Students
Academic Writing A Handbook For International StudentsAcademic Writing A Handbook For International Students
Academic Writing A Handbook For International Students
 
Academic Writing_ The Art of Paraphrasing.pptx
Academic Writing_ The Art of Paraphrasing.pptxAcademic Writing_ The Art of Paraphrasing.pptx
Academic Writing_ The Art of Paraphrasing.pptx
 

More from Jhoirene Clemente

Reoptimization Algorithms and Persistent Turing Machines
Reoptimization Algorithms and Persistent Turing MachinesReoptimization Algorithms and Persistent Turing Machines
Reoptimization Algorithms and Persistent Turing MachinesJhoirene Clemente
 
Introduction to Approximation Algorithms
Introduction to Approximation AlgorithmsIntroduction to Approximation Algorithms
Introduction to Approximation AlgorithmsJhoirene Clemente
 
Reoptimization techniques for solving hard problems
Reoptimization techniques for solving hard problemsReoptimization techniques for solving hard problems
Reoptimization techniques for solving hard problemsJhoirene Clemente
 
Parallel Random Projection for Motif Discovery on GPUs
Parallel Random Projection for Motif Discovery on GPUsParallel Random Projection for Motif Discovery on GPUs
Parallel Random Projection for Motif Discovery on GPUsJhoirene Clemente
 
Gene Expression Data Analysis
Gene Expression Data AnalysisGene Expression Data Analysis
Gene Expression Data AnalysisJhoirene Clemente
 
Consurrent Processes and Reaction
Consurrent Processes and ReactionConsurrent Processes and Reaction
Consurrent Processes and ReactionJhoirene Clemente
 

More from Jhoirene Clemente (7)

Reoptimization Algorithms and Persistent Turing Machines
Reoptimization Algorithms and Persistent Turing MachinesReoptimization Algorithms and Persistent Turing Machines
Reoptimization Algorithms and Persistent Turing Machines
 
Introduction to Approximation Algorithms
Introduction to Approximation AlgorithmsIntroduction to Approximation Algorithms
Introduction to Approximation Algorithms
 
Reoptimization techniques for solving hard problems
Reoptimization techniques for solving hard problemsReoptimization techniques for solving hard problems
Reoptimization techniques for solving hard problems
 
Randomized Computation
Randomized ComputationRandomized Computation
Randomized Computation
 
Parallel Random Projection for Motif Discovery on GPUs
Parallel Random Projection for Motif Discovery on GPUsParallel Random Projection for Motif Discovery on GPUs
Parallel Random Projection for Motif Discovery on GPUs
 
Gene Expression Data Analysis
Gene Expression Data AnalysisGene Expression Data Analysis
Gene Expression Data Analysis
 
Consurrent Processes and Reaction
Consurrent Processes and ReactionConsurrent Processes and Reaction
Consurrent Processes and Reaction
 

Recently uploaded

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 

Recently uploaded (20)

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 

LaTeX Tutorial Guide for Beginners

  • 1. LATEX Tutorial Jhoirene B Clemente Sanggumay Residence Hall University of the Philippines Diliman Nov 14, 2014
  • 2. 34 LATEXTutorial JB Clemente 2 Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 What is LATEX? 1. Latex is a document preparation system 2. Pronunciation: “LAY-tek" or “LAH-tek" (definitely not "“LAH-teks") 3. Markup language for mathematical symbols and formulas
  • 3. 34 LATEXTutorial JB Clemente 3 Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 WYSIWIYG Word Processors What You See Is What You Get (WYSIWYG)
  • 4. 34 LATEXTutorial JB Clemente 4 Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 WYSIWYG Word Processors vs Markup
  • 5. 34 LATEXTutorial JB Clemente 4 Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 WYSIWYG Word Processors vs Markup
  • 6. 34 LATEXTutorial JB Clemente 5 Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Why LATEX? I Mathematical typesetting I Superior typographic quality I Output device independence I Portability I Document longevity I Macros and other programmatic features I Formatting presets are automatic
  • 7. 34 LATEXTutorial JB Clemente 6 Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 What is bad about LATEX? I Difficulty knowing/remembering markup commands I Previewing delay I Possibility of syntax errors I Adding new fonts
  • 8. 34 LATEXTutorial JB Clemente Introduction 7 Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Getting Started: What you need to Install You need the following 1. LATEXDistribution: MacTeX, LaTeX, MikTeX 2. TeX Editor: notepad, gedit, TeXmaker, etc. 3. Document Previewer: Adobe Acrobat reader, Foxit, Preview
  • 9. 34 LATEXTutorial JB Clemente Introduction 8 Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 General Document Structure documentclass{article} . PREAMBLE . begin{document} . BODY . end{document}
  • 10. 34 LATEXTutorial JB Clemente Introduction 8 Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 General Document Structure documentclass{article} . PREAMBLE . begin{document} . BODY . end{document} Definition (Preamble) Consists of the overall, document-wide LaTeX formatting commands
  • 11. 34 LATEXTutorial JB Clemente Introduction 8 Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 General Document Structure documentclass{article} . PREAMBLE . begin{document} . BODY . end{document} Definition (Preamble) Consists of the overall, document-wide LaTeX formatting commands Definition (Body) Contains the text of the document and text formatting commands
  • 12. 34 LATEXTutorial JB Clemente Introduction 9 Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 General Principles 1. Spaces and line breaks are not important. A blank line starts a new paragraph, however.
  • 13. 34 LATEXTutorial JB Clemente Introduction 9 Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 General Principles 1. Spaces and line breaks are not important. A blank line starts a new paragraph, however. 2. Commands all start with backslash: documentclass
  • 14. 34 LATEXTutorial JB Clemente Introduction 9 Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 General Principles 1. Spaces and line breaks are not important. A blank line starts a new paragraph, however. 2. Commands all start with backslash: documentclass 3. Braces are used for “arguments" documentclass{article}
  • 15. 34 LATEXTutorial JB Clemente Introduction 9 Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 General Principles 1. Spaces and line breaks are not important. A blank line starts a new paragraph, however. 2. Commands all start with backslash: documentclass 3. Braces are used for “arguments" documentclass{article} 4. Brackets are used for“optional arguments": documentclass[11pt]{article}
  • 16. 34 LATEXTutorial JB Clemente Introduction 9 Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 General Principles 1. Spaces and line breaks are not important. A blank line starts a new paragraph, however. 2. Commands all start with backslash: documentclass 3. Braces are used for “arguments" documentclass{article} 4. Brackets are used for“optional arguments": documentclass[11pt]{article} 5. Commands are case sensitive. documentclass not DocumentClass
  • 17. 34 LATEXTutorial JB Clemente Introduction Getting Started 10 Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Document Types 1. article - for short documents for publication 2. report - for longer technical documents; like articles, but has chapters 3. book - for large documents, such as books 4. letter - for writing letters 5. Beamer - for presentation slides
  • 18. 34 LATEXTutorial JB Clemente Introduction Getting Started 11 Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Simple Article documentclass{article} begin{document} % Content end{document}
  • 19. 34 LATEXTutorial JB Clemente Introduction Getting Started 12 Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Simple Article with Preamble Commands for specifying 1. Title 2. Author 3. Date title{LaTex Tutorial} author{Jhoirene B Clemente} date{Nov 20, 2014}
  • 20. 34 LATEXTutorial JB Clemente Introduction Getting Started 12 Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Simple Article with Preamble Commands for specifying 1. Title 2. Author 3. Date title{LaTex Tutorial} author{Jhoirene B Clemente} date{Nov 20, 2014} To include title, author, and date in the document. We will use the command maketitle
  • 21. 34 LATEXTutorial JB Clemente Introduction Getting Started 13 Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Environments Environment declaration begin{<environment>} .... end{<environment>}
  • 22. 34 LATEXTutorial JB Clemente Introduction Getting Started 13 Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Environments Environment declaration begin{<environment>} .... end{<environment>} Basic Environments I document I enumerate I itemize I figure I table
  • 23. 34 LATEXTutorial JB Clemente Introduction Getting Started 14 Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Example Environment: list with bullets Basic environments begin{itemize} item document item itemize item enumerate item figure item table end{itemize}
  • 24. 34 LATEXTutorial JB Clemente Introduction Getting Started 15 Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Example Environment: enumerate Basic environments begin{enumerate} item document item itemize item enumerate item figure item table end{enumerate}
  • 25. 34 LATEXTutorial JB Clemente Introduction Getting Started 16 Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Example Environment: enumerate Basic environments 1. document 2. itemize 3. enumerate 4. figure 5. table
  • 26. 34 LATEXTutorial JB Clemente Introduction Getting Started 17 Document Types Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Other useful environments 1. definition 2. theorem 3. proof 4. lemma 5. claim
  • 27. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types 18 Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Basic Text Formatting The quick brown fox jump over the lazy dog
  • 28. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types 18 Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Basic Text Formatting The quick brown fox jump over the lazy dog The textbf{quick} brown textit{fox} jump over the underline{lazy} textbf{textit{dog}}
  • 29. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types 19 Typesetting Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Other Text Formatting Commands
  • 30. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting 20 Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Math mode usepackage{amsmath} Let f be the function defined by f (x) = 3x + 7, and let a be a positive real number.
  • 31. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting 20 Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Math mode usepackage{amsmath} Let f be the function defined by f (x) = 3x + 7, and let a be a positive real number.
  • 32. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting 20 Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Math mode usepackage{amsmath} Let f be the function defined by f (x) = 3x + 7, and let a be a positive real number.
  • 33. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting 21 Math Mode Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Math mode usepackage{amsmath} cos(2) = cos2 − sin2 limx!1 exp(−x) = 0 a mod b kn+1 = n2 + k2 n − kn−1 n! k!(n−k)! = nk x a (mod b)
  • 34. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode 22 Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Citation and References
  • 35. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode 22 Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Citation and References
  • 36. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode 23 Citation and References Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Bibfiles Collection of bibliographic entries stored in “filename.bib Figure: Sample bibfile
  • 37. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References 24 Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Using Style Files
  • 38. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References 25 Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Using Style Files
  • 39. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References 26 Using Style Files Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 LATEXStyle File You are recommended to use the Elsevier article class elsarticle.cls http://www.ctan.org/tex-archive/macros/latex/ contrib/elsarticle to prepare your manuscript and BibTeX (http://www.bibtex.org) to generate your bibliography. For detailed submission instructions, templates and other information on LaTeX, see http://www.elsevier.com/latex.
  • 40. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files 27 Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Easier Option: LYX What You See Is What You Mean
  • 41. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files 28 Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Easier Option: LYX
  • 42. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files 29 Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Easier Option: LYX
  • 43. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files 30 Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 TeX with Collaboration
  • 44. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files 31 Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 TeX with Collaboration
  • 45. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files 32 Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Must have Apps
  • 46. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files 33 Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 Thank you for listening.
  • 47. 34 LATEXTutorial JB Clemente Introduction Getting Started Document Types Typesetting Math Mode Citation and References Using Style Files 34 Other Tools References Sanggumay Residence Hall University of the Philippines Diliman Nov 13, 2014 References