SlideShare ist ein Scribd-Unternehmen logo
1 von 72
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Was ist angesagt?

LaTeX Part 1
LaTeX Part 1LaTeX Part 1
LaTeX Part 1awv7t
 
Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesMohamed Alrshah
 
Introduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah NabatiIntroduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah Nabatinabati
 
LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners LATEX and BEAMER for Beginners
LATEX and BEAMER for Beginners Tilak Devaraj
 
Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latextran dinh
 
scientific writing 01 - latex
scientific writing   01 - latexscientific writing   01 - latex
scientific writing 01 - latexLeo Chen
 
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
 
A gentle introduction to Latex
A gentle introduction to LatexA gentle introduction to Latex
A gentle introduction to LatexEmmanuel Abatih
 
LaTeX Part 2
LaTeX Part 2LaTeX Part 2
LaTeX Part 2awv7t
 
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
 
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 DocumentsDr. Mehar Chand
 
LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with TexstudioHossein Babashah
 
Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Suddhasheel GHOSH, PhD
 

Was ist angesagt? (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
 

Ähnlich wie LaTeX Tutorial Guide

LaTeX로 문서 작성하자
LaTeX로 문서 작성하자LaTeX로 문서 작성하자
LaTeX로 문서 작성하자Kangjun Heo
 
Electronic Grading of Paper Assessments
Electronic Grading of Paper AssessmentsElectronic Grading of Paper Assessments
Electronic Grading of Paper AssessmentsMatthew 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 projectMao Geng
 
mongodb-aggregation-may-2012
mongodb-aggregation-may-2012mongodb-aggregation-may-2012
mongodb-aggregation-may-2012Chris Westin
 
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.TechSandhya Gandham
 
C++ Windows Forms L01 - Intro
C++ Windows Forms L01 - IntroC++ Windows Forms L01 - Intro
C++ Windows Forms L01 - IntroMohammad Shaker
 
Microservices, containers, and machine learning
Microservices, containers, and machine learningMicroservices, containers, and machine learning
Microservices, containers, and machine learningPaco 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 frameworkChris 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 JVMManuel 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 PythonMiklos 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 HadoopHikmat 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 ScaleEvan Chan
 
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 introductionjayakumarc9
 
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 wheelsNaveenkumar Muguda
 

Ähnlich wie LaTeX Tutorial Guide (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
 

Kürzlich hochgeladen

General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 

Kürzlich hochgeladen (20)

General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 

LaTeX Tutorial Guide