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 workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesMohamed Alrshah
 
documents writing with LATEX
documents writing with LATEXdocuments writing with LATEX
documents writing with LATEXAnusha Vajrapu
 
LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with TexstudioHossein Babashah
 
LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners Tilak Devaraj
 
Scientific Computing with Python - NumPy | WeiYuan
Scientific Computing with Python - NumPy | WeiYuanScientific Computing with Python - NumPy | WeiYuan
Scientific Computing with Python - NumPy | WeiYuanWei-Yuan Chang
 
Introduction to IPython & Jupyter Notebooks
Introduction to IPython & Jupyter NotebooksIntroduction to IPython & Jupyter Notebooks
Introduction to IPython & Jupyter NotebooksEueung Mulyana
 
1 cs xii_python_file_handling text n binary file
1 cs xii_python_file_handling text n binary file1 cs xii_python_file_handling text n binary file
1 cs xii_python_file_handling text n binary fileSanjayKumarMahto1
 
Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python Jaganadh Gopinadhan
 
The LaTeX Workshop: Typesetting Mathematics with LaTeX
The LaTeX Workshop: Typesetting Mathematics with LaTeXThe LaTeX Workshop: Typesetting Mathematics with LaTeX
The LaTeX Workshop: Typesetting Mathematics with LaTeXSuddhasheel GHOSH, PhD
 
Installation guide for Latex and MOODLE
Installation guide for Latex and MOODLEInstallation guide for Latex and MOODLE
Installation guide for Latex and MOODLEabigail4894
 
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
 

What's hot (20)

Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and Practices
 
Latex Notes
Latex NotesLatex Notes
Latex Notes
 
documents writing with LATEX
documents writing with LATEXdocuments writing with LATEX
documents writing with LATEX
 
LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with Texstudio
 
LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners
 
Scientific Computing with Python - NumPy | WeiYuan
Scientific Computing with Python - NumPy | WeiYuanScientific Computing with Python - NumPy | WeiYuan
Scientific Computing with Python - NumPy | WeiYuan
 
Pytorch
PytorchPytorch
Pytorch
 
Introduction to IPython & Jupyter Notebooks
Introduction to IPython & Jupyter NotebooksIntroduction to IPython & Jupyter Notebooks
Introduction to IPython & Jupyter Notebooks
 
Python Basics
Python BasicsPython Basics
Python Basics
 
1 cs xii_python_file_handling text n binary file
1 cs xii_python_file_handling text n binary file1 cs xii_python_file_handling text n binary file
1 cs xii_python_file_handling text n binary file
 
8 python data structure-1
8 python data structure-18 python data structure-1
8 python data structure-1
 
Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python
 
LaTeX for beginners
LaTeX for beginnersLaTeX for beginners
LaTeX for beginners
 
Detecting Paraphrases in Marathi Language
Detecting Paraphrases in Marathi LanguageDetecting Paraphrases in Marathi Language
Detecting Paraphrases in Marathi Language
 
The LaTeX Workshop: Typesetting Mathematics with LaTeX
The LaTeX Workshop: Typesetting Mathematics with LaTeXThe LaTeX Workshop: Typesetting Mathematics with LaTeX
The LaTeX Workshop: Typesetting Mathematics with LaTeX
 
Installation guide for Latex and MOODLE
Installation guide for Latex and MOODLEInstallation guide for Latex and MOODLE
Installation guide for Latex and MOODLE
 
Theory of computation Lec2
Theory of computation Lec2Theory of computation Lec2
Theory of computation Lec2
 
Python ppt
Python pptPython ppt
Python ppt
 
LaTeX-Presentation
LaTeX-PresentationLaTeX-Presentation
LaTeX-Presentation
 
Research 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeXResearch 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeX
 

Viewers also liked

Introduction to LaTeX (For Word users)
 Introduction to LaTeX (For Word users) Introduction to LaTeX (For Word users)
Introduction to LaTeX (For Word users)Guy K. Kloss
 
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
 
Introduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah NabatiIntroduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah Nabatinabati
 
LaTeX Introduction for Word Users
LaTeX Introduction for Word UsersLaTeX Introduction for Word Users
LaTeX Introduction for Word UsersGuy K. Kloss
 
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
 
Editing documents with LaTeX
Editing documents with LaTeXEditing documents with LaTeX
Editing documents with LaTeXLaura M. Castro
 
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 (19)

Introduction to LaTeX (For Word users)
 Introduction to LaTeX (For Word users) Introduction to LaTeX (For Word users)
Introduction to LaTeX (For Word users)
 
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
 
Introduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah NabatiIntroduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah Nabati
 
Latex
LatexLatex
Latex
 
LaTeX Introduction for Word Users
LaTeX Introduction for Word UsersLaTeX Introduction for Word Users
LaTeX Introduction for Word Users
 
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...
 
Editing documents with LaTeX
Editing documents with LaTeXEditing documents with LaTeX
Editing documents with LaTeX
 
Introduction to LaTeX
Introduction to LaTeXIntroduction to LaTeX
Introduction to LaTeX
 
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

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 MenDelhi Call girls
 
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...Neo4j
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
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...Martijn de Jong
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
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 2024The Digital Insurer
 
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...Miguel Araújo
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
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.pdfEnterprise 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 Servicegiselly40
 
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 2024Rafal Los
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
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 RobisonAnna Loughnan Colquhoun
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 

Recently uploaded (20)

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
 
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...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
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...
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
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
 
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...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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
 
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
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.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
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 

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