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

What's hot (20)

Introduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah NabatiIntroduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah Nabati
 
LaTeX Introduction for Word Users
LaTeX Introduction for Word UsersLaTeX Introduction for Word Users
LaTeX Introduction for Word Users
 
Introduction to LaTeX (For Word users)
 Introduction to LaTeX (For Word users) Introduction to LaTeX (For Word users)
Introduction to LaTeX (For Word users)
 
LaTeX Survival Guide
LaTeX Survival Guide LaTeX Survival Guide
LaTeX Survival Guide
 
Editing documents with LaTeX
Editing documents with LaTeXEditing documents with LaTeX
Editing documents with LaTeX
 
Research 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeXResearch 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeX
 
Latex Tuitorial
Latex TuitorialLatex Tuitorial
Latex Tuitorial
 
Advanced latex
Advanced latexAdvanced latex
Advanced latex
 
Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and Practices
 
LaTeX Basics
LaTeX BasicsLaTeX Basics
LaTeX Basics
 
Python basics
Python basicsPython basics
Python basics
 
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...
 
Latex Introduction for Beginners
Latex Introduction for BeginnersLatex Introduction for Beginners
Latex Introduction for Beginners
 
Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latex
 
Learn Latex
Learn LatexLearn Latex
Learn Latex
 
Python GUI Programming
Python GUI ProgrammingPython GUI Programming
Python GUI Programming
 
Algorithms Lecture 1: Introduction to Algorithms
Algorithms Lecture 1: Introduction to AlgorithmsAlgorithms Lecture 1: Introduction to Algorithms
Algorithms Lecture 1: Introduction to Algorithms
 
Lexical Analysis - Compiler Design
Lexical Analysis - Compiler DesignLexical Analysis - Compiler Design
Lexical Analysis - Compiler Design
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
CSS
CSSCSS
CSS
 

Viewers also liked

Data Structures and Algorithms
Data Structures and AlgorithmsData Structures and Algorithms
Data Structures and Algorithms
Pierre Vigneras
 

Viewers also liked (15)

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
 
Introduction to LaTeX
Introduction to LaTeXIntroduction to LaTeX
Introduction to 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

1iCollege.docx
1iCollege.docx1iCollege.docx
1iCollege.docx
hyacinthshackley2629
 
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
 
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
felicidaddinwoodie
 

Similar to LaTex Tutorial (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

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
Jhoirene Clemente
 
Gene Expression Data Analysis
Gene Expression Data AnalysisGene Expression Data Analysis
Gene Expression Data Analysis
Jhoirene 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

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 

Recently uploaded (20)

Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 

LaTex Tutorial

  • 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