SlideShare a Scribd company logo
LaTeX Tutorial
2015.01.28
Agenda
•
• LaTeX
• Hello LaTeX!
•
• Bibliography
• Build
• Writing Tips
LaTeX
• LaTeX TeX Leslie
Lamport
• Leslie Lamport: LaTeX, Paxos algorithm, 2013
Turing award
• TeX Knuth
LaTeX
•
• Word + OneNote LaTeX
•
•
• Knuth The Art of Computer Programming
TeX
•
LaTeX
• Beamer
• Pandoc
• musixtex
• circuitkz
•
• LaTeX
• /ˈleɪtɛk/ /ˈlɑːtɛk/
• X k
LaTeX
• Overleaf
• https://www.overleaf.com
• writelatex WYSIWYG
• build ...
• StackExchange TeX
• http://tex.stackexchange.com
• BJ4
LaTeX
• LaTeX Wikibook
• http://en.wikibooks.org/wiki/LaTeX
• (?)
• CTAN
• http://www.ctan.org
• TeX package
• API Reference
Installation
• http://en.wikibooks.org/wiki/LaTeX/Installation
• Linux: TeX Live package
• distribution
200 - 300 MB
• Windows: MiKTeX 160 MB
• Mac: MacTeX 2.4 GB
Hello LaTeX!
documentclass[a4paper, 12pt]{report}
begin{document}
Hello, LaTeX{}!
emph{Welcome} to this textbf{world}!
Itorq{}s formula:
$$ dX_t = mu_tdt + sigma_tdB_t $$
end{document}
documentclass[a4paper, 12pt]{report}
begin{document}
Hello, LaTeX{}!
emph{Welcome} to this textbf{world}!
Itorq{}s formula:
$$ dX_t = mu_tdt + sigma_tdB_t $$
end{document}
documentclass[a4paper, 12pt]{report}
begin{document}
Hello, LaTeX{}!
emph{Welcome} to this textbf{world}!
Itorq{}s formula:
$$ dX_t = mu_tdt + sigma_tdB_t $$
end{document}
• documentclass
•
• a4paper: A4
• 12pt: 12
• report:
documentclass[a4paper, 12pt]{report}
begin{document}
Hello, LaTeX{}!
emph{Welcome} to this textbf{world}!
Itorq{}s formula:
$$ dX_t = mu_tdt + sigma_tdB_t $$
end{document}
• begin end
•
•
document
documentclass[a4paper, 12pt]{report}
begin{document}
Hello, LaTeX{}!
emph{Welcome} to this textbf{world}!
Itorq{}s formula:
$$ dX_t = mu_tdt + sigma_tdB_t $$
end{document}
• • LaTeX:
LaTeX
command
documentclass[a4paper, 12pt]{report}
begin{document}
Hello, LaTeX{}!
emph{Welcome} to this textbf{world}!
Itorq{}s formula:
$$ dX_t = mu_tdt + sigma_tdB_t $$
end{document}
• emph: emphasis
• textbf:
• rq: right quote
• .tex
documentclass[a4paper, 12pt]{report}
begin{document}
Hello, LaTeX{}!
emph{Welcome} to this textbf{world}!
Itorq{}s formula:
$$ dX_t = mu_tdt + sigma_tdB_t $$
end{document}
• $
TeX
• $
$
•
• .tex
• indent
• # $ % ˆ & _ { } ̃ 
• Tab
• %
LaTeX Group
• { } group
•
{
color{red}
This line will be red.
}
This line will not.
LaTeX Command
• command
• function
• { } argument
• [ ] optional option
•
LaTeX Environment
• begin{name} end
environment
• Environment command
environment
Input TeX Files
• include
• input{another.tex}
• another.tex
input
• .tex
input
• Global structure
• Document class
• Package
• Chapter, section, subsection
Global Structure
documentclass{…}
usepackage{…}
% settings
begin{document}
% content…
end{document}
• document
class
•
•
• document
Document Class
article Journal short report etc.
report chapter
book
book
IEEEtran IEEE Transaction format
•
Document Class
• options
10pt, 11pt, 12pt
10pt
12pt
a4paper, letterpaper
onecolumn, twocolumn column twocolumn
twoside, oneside
book twoside article & report
oneside
Package
• usepackage{…} package
• usepackage{verbatim}
•
•
• cite citation
• graphicx
• tabularx
• listings
• LaTeX
• chapter book report
• section
• subsection
• subsubsection
...
• List (ordered &
unordered)
• Font
• Source code
• Table
• Table of Contents
• Citation and Footnote
• Figure
• Reference
List (unordered)
begin{itemize}
item The first item
item The second
item The third
end{itemize}
• The first item
• The second
• The third
List (ordered)
begin{enumerate}
item The first item
item The second
item The third
end{enumerate}
1. The first item
2. The second
3. The third
begin{enumerate}
item The first item
begin{itemize}
item 1 of the first
item 2 of the first
end{itemize}
item The second
end{enumerate}
1. The first item
• 1 of the first
• 2 of the first
2. The second
Font
• textbf{…}
• emph{…}, italic{…}
• monospace texttt{…}
• listings
• usepackage{listings}
• lstlistings
begin{lstlistings}[breakline]
int my_count = 0;
println(“hello world!”);
end{lstlistings}
• syntax highlight
• document
lstset{
language=C,
numbers=none,
tabsize=2,
basicstyle=ttfamilysmall,
breakatwhitespace=true
}
• LaTeX
•
• PPT
begin{tabular}{ l l l }
1 & 2 & 3 
4 & 5 & 6 
7 & 8 & 9 
end{tabular}
1 2 3
4 5 6
7 8 9
begin{tabular}{ | c | c | c | }
hline
1 & 2 & 3 
hline
4 & 5 & 6 
hline
7 & 8 & 9 
hline
end{tabular}
1 2 3
4 5 6
7 8 9
Column
c
l
r
p{12cm}
| column
|| column
• tableofcontents
•
• book: chapter, section, subsection
• report: section, subsection, subsubsection
Citation
• usepackage{cite}
• cite{bib_key}
• bib_key bibliography key
Citation
Those techniques are usually used in a client-server scenario where
the program is partitioned into tasks and some tasks are offloaded to
the server from clients~cite{MCCSurvey, Chun2011, hung2014mobilefbp}.
Following the emerging HTML5 and JavaScript technologies,
web apps are enhanced with increased capabilities that are more
specific for mobile contexts cite{WEBAPP}.
Footnote
• citation bibliography
•
• footnote
• footnote{put footnote texts here}
• footnotemark footnotetext
Footnote
Web applications are the most widely-adopted cross-platform
solution for mobile devices,
footnote{This work was in part supported by MOST under
102-2221-E-002-087-MY3 and by III under 104-EC-17-A-24-0691}
Footnote
section[Introduction]{Introductionfootnotemark}
footnotetext{This work was in part supported by MOST under
102-2221-E-002-087-MY3 and by III under 104-EC-17-A-24-0691}
• usepackage{graphicx}
•
• includegraphics[...]{file_path}
• file_path
• .jpg, .png, .pdf
• .tex input input
• includegraphics[width=1.0columnwidth]{…}
• column
• 1.0 .8
• textwidth
twocolumn
optional ...
• width=xx height=xx
•
• keepaspectratio
• width height
Figure
• Figure graphic graphic
table
• begin{figure} end{figure}
Figure: graphic
begin{figure}[htb!]
begin{centering}
includegraphics[width=1.0
columnwidth]{figures/
usecase-webcam}
caption{A distributed
webcams example}
label{fig:usecase-webcam}
end{centering}
end{figure}
figure
Figure: table
begin{figure}[htb!]
begin{centering}
begin{tabular}
% table content...
end{tabular}
caption{A distributed webcams example}
label{fig:usecase-webcam}
end{centering}
end{figure}
Figure
• Figure float flow
• begin{figure}[htb!]
• placement specifier figure
• h: here source code
• t: top
• b: bottom
• !: LaTeX
• LaTeX
•
Figure Graphic
• figure
begin{figure}[htb!]
includegraphics[width=1.0columnwidth]{file1}
caption{Caption 1}
label{fig:file1}
includegraphics[width=1.0columnwidth]{file2}
caption{Caption 2}
label{fig:file2}
end{figure}
Label
• label{label_name}
•
• chapter section figure
• label_name
• label{fig:system_architecture}
• label{sec:introduction}
Reference
• ref
The high-level overview of Migratom.js is
illustrated in Figure~ref{fig:Architecture}.
• Figure
Chapter Table !!
Bibliography
• LaTeX bib
• BibTeX
• .bib key-value pair
citation
• cite{key} Biliography
.bib key-value
@article{MCCSurvey,
author = {Fernando, Niroshinie and Loke, Seng W. and Rahayu,
Wenny},
title = {{Mobile Cloud Computing: A Survey}},
journal = {Future Gener. Comput. Syst.},
issue_date = {January, 2013},
volume = {29},
number = {1},
month = jan,
year = {2013},
issn = {0167-739X},
pages = {84--106},
numpages = {23},
url = {http://dx.doi.org/10.1016/j.future.2012.05.023},
doi = {10.1016/j.future.2012.05.023},
acmid = {2388260},
publisher = {Elsevier Science Publishers B. V.},
address = {Amsterdam, The Netherlands, The Netherlands},
keywords = {Mobile cloud computing, Pervasive networks, Task
offload},
}
Best Practices
• survey bib
• title
• Google Scholar BibTeX
•
• addcontentsline{toc}{chapter}{bibname}
• bibliography{bib_file_name}
• usepackage[notbib]
{tocbibind}
• Mac xelatex bibtex
• xelatex thesis.tex
• bibtex thesis.tex
• xelatex thesis.tex
• xelatex thesis.tex
• Linux pdftex
1. xelatex thesis.tex: xelatex cite
thesis.aux
2. bibtex thesis.tex: bibtex thesis.aux
key .bib values
thesis.bbl
3. xelatex thesis.tex: xelatex .bbl
bibliography{…}
4. xelatex thesis.tex:
BibTeX
• definecolor
• lstdefinelanguage
• hyphenation
• pdfpages
• listoffigures listoftables
• vspace noindent
definecolor
• definecolor{my_red}{RGB}{223,0,2}
{
color{my_red}
This sentence is red.
}
lstdefinelanguage
lstdefinelanguage{JavaScript}{
keywords={typeof, new, true, false, catch, function, return, null,
catch, switch, var, if, in, while, do, else, case, break},
keywordstyle=color{jskw}bfseries,
ndkeywords={class, export, boolean, throw, implements, import,
this},
ndkeywordstyle=color{darkgray}bfseries,
identifierstyle=color{black},
sensitive=false,
comment=[l]{//},
morecomment=[s]{/*}{*/},
commentstyle=color{jsgreen}ttfamily,
stringstyle=color{jsred}ttfamily,
morestring=[b]',
morestring=[b]"
}
… lstset
lstset{
language=JavaScript,
numbers=none,
tabsize=2,
basicstyle=ttfamilysmall,
breakatwhitespace=true
}
Hyphenation
• LaTeX
• hyphenation
• hyphenation{Java-Script}
pdfpages
• usepackage{pdfpages}
addcontentsline{toc}{chapter}{ }
includepdf[pages={1}]{cert.pdf}
listoffigures & listoftables
• listoffigures listoftables
• tableofcontents
vspace
• vspace{5mm}
• v = verticle
• 5mm
noindent
• noindent
•
Best Practices
• input input
•
• ~
• e.g. i.e.
• emph textbf texttt
• itemize enumerate
• build.sh makefile
• Google Scholar bib
• Git Github Bitbucket
• TeX .gitignore
• https://www.gitignore.io/api/latex

More Related Content

What's hot

LaTeX Part 1
LaTeX Part 1LaTeX Part 1
LaTeX Part 1
awv7t
 
Latex
LatexLatex
Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and Practices
Mohamed Alrshah
 
Introduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah NabatiIntroduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah Nabati
nabati
 
LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners
Tilak Devaraj
 
LaTeX for beginners
LaTeX for beginnersLaTeX for beginners
LaTeX for beginners
Stéphane Péchard
 
Introduction to LaTeX
Introduction to LaTeXIntroduction to LaTeX
Introduction to LaTeX
satish_annigeri
 
Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latex
tran dinh
 
Introduction to Latex
Introduction to Latex Introduction to Latex
Introduction to Latex
Tareq Salaheldeen
 
scientific writing 01 - latex
scientific writing   01 - latexscientific writing   01 - latex
scientific writing 01 - latex
Leo Chen
 
Research 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeXResearch 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeX
Jia-Bin Huang
 
Technical writing using LaTeX
Technical writing using LaTeXTechnical writing using LaTeX
Technical writing using LaTeX
Partha Sarathi Chakraborty
 
A gentle introduction to Latex
A gentle introduction to LatexA gentle introduction to Latex
A gentle introduction to Latex
Emmanuel Abatih
 
LaTeX Survival Guide
LaTeX Survival Guide LaTeX Survival Guide
LaTeX Survival Guide
Dylan Seychell
 
LaTeX Part 2
LaTeX Part 2LaTeX Part 2
LaTeX Part 2
awv7t
 
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
Vesa Linja-aho
 
Tutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting DocumentsTutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting Documents
Dr. Mehar Chand
 
LaTeX Basics
LaTeX BasicsLaTeX Basics
LaTeX Basics
Kristen Sauby
 
LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with Texstudio
Hossein Babashah
 
Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1
Suddhasheel GHOSH, PhD
 

What's hot (20)

LaTeX Part 1
LaTeX Part 1LaTeX Part 1
LaTeX Part 1
 
Latex
LatexLatex
Latex
 
Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and Practices
 
Introduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah NabatiIntroduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah Nabati
 
LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners
 
LaTeX for beginners
LaTeX for beginnersLaTeX for beginners
LaTeX for beginners
 
Introduction to LaTeX
Introduction to LaTeXIntroduction to LaTeX
Introduction to LaTeX
 
Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latex
 
Introduction to Latex
Introduction to Latex Introduction to Latex
Introduction to Latex
 
scientific writing 01 - latex
scientific writing   01 - latexscientific writing   01 - latex
scientific writing 01 - latex
 
Research 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeXResearch 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeX
 
Technical writing using LaTeX
Technical writing using LaTeXTechnical writing using LaTeX
Technical writing using LaTeX
 
A gentle introduction to Latex
A gentle introduction to LatexA gentle introduction to Latex
A gentle introduction to Latex
 
LaTeX Survival Guide
LaTeX Survival Guide LaTeX Survival Guide
LaTeX Survival Guide
 
LaTeX Part 2
LaTeX Part 2LaTeX Part 2
LaTeX Part 2
 
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
 
Tutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting DocumentsTutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting Documents
 
LaTeX Basics
LaTeX BasicsLaTeX Basics
LaTeX Basics
 
LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with Texstudio
 
Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1
 

Similar to LaTeX Tutorial

LaTeX로 문서 작성하자
LaTeX로 문서 작성하자LaTeX로 문서 작성하자
LaTeX로 문서 작성하자
Kangjun Heo
 
Electronic Grading of Paper Assessments
Electronic Grading of Paper AssessmentsElectronic Grading of Paper Assessments
Electronic Grading of Paper Assessments
Matthew Leingang
 
Hadoop and HBase experiences in perf log project
Hadoop and HBase experiences in perf log projectHadoop and HBase experiences in perf log project
Hadoop and HBase experiences in perf log project
Mao Geng
 
mongodb-aggregation-may-2012
mongodb-aggregation-may-2012mongodb-aggregation-may-2012
mongodb-aggregation-may-2012
Chris Westin
 
Latex intro
Latex introLatex intro
Latex intro
NEERAJ BAGHEL
 
latex document for IT workshop Lab . B.Tech
latex document for IT workshop Lab . B.Techlatex document for IT workshop Lab . B.Tech
latex document for IT workshop Lab . B.Tech
Sandhya Gandham
 
Couchbas for dummies
Couchbas for dummiesCouchbas for dummies
Couchbas for dummies
Qureshi Tehmina
 
Latex ppt copy
Latex ppt   copyLatex ppt   copy
Latex ppt copy
Rajesh Kumar
 
C++ Windows Forms L01 - Intro
C++ Windows Forms L01 - IntroC++ Windows Forms L01 - Intro
C++ Windows Forms L01 - Intro
Mohammad Shaker
 
Microservices, containers, and machine learning
Microservices, containers, and machine learningMicroservices, containers, and machine learning
Microservices, containers, and machine learning
Paco Nathan
 
ログ収集プラットフォーム開発におけるElasticsearchの運用
ログ収集プラットフォーム開発におけるElasticsearchの運用ログ収集プラットフォーム開発におけるElasticsearchの運用
ログ収集プラットフォーム開発におけるElasticsearchの運用
LINE Corporation
 
MongoDB's New Aggregation framework
MongoDB's New Aggregation frameworkMongoDB's New Aggregation framework
MongoDB's New Aggregation framework
Chris Westin
 
Voxxed Days Vienna - The Why and How of Reactive Web-Applications on the JVM
Voxxed Days Vienna - The Why and How of Reactive Web-Applications on the JVMVoxxed Days Vienna - The Why and How of Reactive Web-Applications on the JVM
Voxxed Days Vienna - The Why and How of Reactive Web-Applications on the JVM
Manuel Bernhardt
 
The Nitty Gritty of Advanced Analytics Using Apache Spark in Python
The Nitty Gritty of Advanced Analytics Using Apache Spark in PythonThe Nitty Gritty of Advanced Analytics Using Apache Spark in Python
The Nitty Gritty of Advanced Analytics Using Apache Spark in Python
Miklos Christine
 
Data Processing with Cascading Java API on Apache Hadoop
Data Processing with Cascading Java API on Apache HadoopData Processing with Cascading Java API on Apache Hadoop
Data Processing with Cascading Java API on Apache Hadoop
Hikmat Dhamee
 
FiloDB: Reactive, Real-Time, In-Memory Time Series at Scale
FiloDB: Reactive, Real-Time, In-Memory Time Series at ScaleFiloDB: Reactive, Real-Time, In-Memory Time Series at Scale
FiloDB: Reactive, Real-Time, In-Memory Time Series at Scale
Evan Chan
 
Head first latex
Head first latexHead first latex
Head first latex
Chung-Hsiang Ofa Hsueh
 
LaTeX for B.Sc. Mathematics,an introduction
LaTeX for B.Sc. Mathematics,an introductionLaTeX for B.Sc. Mathematics,an introduction
LaTeX for B.Sc. Mathematics,an introduction
jayakumarc9
 
Office 365 Saturday (Sydney) - SharePoint framework – build integrated user e...
Office 365 Saturday (Sydney) - SharePoint framework – build integrated user e...Office 365 Saturday (Sydney) - SharePoint framework – build integrated user e...
Office 365 Saturday (Sydney) - SharePoint framework – build integrated user e...
Anupam Ranku
 
Software Development: Beyond Training wheels
Software Development: Beyond Training wheelsSoftware Development: Beyond Training wheels
Software Development: Beyond Training wheels
Naveenkumar Muguda
 

Similar to LaTeX Tutorial (20)

LaTeX로 문서 작성하자
LaTeX로 문서 작성하자LaTeX로 문서 작성하자
LaTeX로 문서 작성하자
 
Electronic Grading of Paper Assessments
Electronic Grading of Paper AssessmentsElectronic Grading of Paper Assessments
Electronic Grading of Paper Assessments
 
Hadoop and HBase experiences in perf log project
Hadoop and HBase experiences in perf log projectHadoop and HBase experiences in perf log project
Hadoop and HBase experiences in perf log project
 
mongodb-aggregation-may-2012
mongodb-aggregation-may-2012mongodb-aggregation-may-2012
mongodb-aggregation-may-2012
 
Latex intro
Latex introLatex intro
Latex intro
 
latex document for IT workshop Lab . B.Tech
latex document for IT workshop Lab . B.Techlatex document for IT workshop Lab . B.Tech
latex document for IT workshop Lab . B.Tech
 
Couchbas for dummies
Couchbas for dummiesCouchbas for dummies
Couchbas for dummies
 
Latex ppt copy
Latex ppt   copyLatex ppt   copy
Latex ppt copy
 
C++ Windows Forms L01 - Intro
C++ Windows Forms L01 - IntroC++ Windows Forms L01 - Intro
C++ Windows Forms L01 - Intro
 
Microservices, containers, and machine learning
Microservices, containers, and machine learningMicroservices, containers, and machine learning
Microservices, containers, and machine learning
 
ログ収集プラットフォーム開発におけるElasticsearchの運用
ログ収集プラットフォーム開発におけるElasticsearchの運用ログ収集プラットフォーム開発におけるElasticsearchの運用
ログ収集プラットフォーム開発におけるElasticsearchの運用
 
MongoDB's New Aggregation framework
MongoDB's New Aggregation frameworkMongoDB's New Aggregation framework
MongoDB's New Aggregation framework
 
Voxxed Days Vienna - The Why and How of Reactive Web-Applications on the JVM
Voxxed Days Vienna - The Why and How of Reactive Web-Applications on the JVMVoxxed Days Vienna - The Why and How of Reactive Web-Applications on the JVM
Voxxed Days Vienna - The Why and How of Reactive Web-Applications on the JVM
 
The Nitty Gritty of Advanced Analytics Using Apache Spark in Python
The Nitty Gritty of Advanced Analytics Using Apache Spark in PythonThe Nitty Gritty of Advanced Analytics Using Apache Spark in Python
The Nitty Gritty of Advanced Analytics Using Apache Spark in Python
 
Data Processing with Cascading Java API on Apache Hadoop
Data Processing with Cascading Java API on Apache HadoopData Processing with Cascading Java API on Apache Hadoop
Data Processing with Cascading Java API on Apache Hadoop
 
FiloDB: Reactive, Real-Time, In-Memory Time Series at Scale
FiloDB: Reactive, Real-Time, In-Memory Time Series at ScaleFiloDB: Reactive, Real-Time, In-Memory Time Series at Scale
FiloDB: Reactive, Real-Time, In-Memory Time Series at Scale
 
Head first latex
Head first latexHead first latex
Head first latex
 
LaTeX for B.Sc. Mathematics,an introduction
LaTeX for B.Sc. Mathematics,an introductionLaTeX for B.Sc. Mathematics,an introduction
LaTeX for B.Sc. Mathematics,an introduction
 
Office 365 Saturday (Sydney) - SharePoint framework – build integrated user e...
Office 365 Saturday (Sydney) - SharePoint framework – build integrated user e...Office 365 Saturday (Sydney) - SharePoint framework – build integrated user e...
Office 365 Saturday (Sydney) - SharePoint framework – build integrated user e...
 
Software Development: Beyond Training wheels
Software Development: Beyond Training wheelsSoftware Development: Beyond Training wheels
Software Development: Beyond Training wheels
 

Recently uploaded

Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
NgcHiNguyn25
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024
ak6969907
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
sayalidalavi006
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 

Recently uploaded (20)

Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 

LaTeX Tutorial