SlideShare une entreprise Scribd logo
PROF. P. M. JADAV
ASSOCIATE PROFESSOR
COMPUTER ENGINEERING DEPARTMENT
FACULTY OF TECHNOLOGY
DHARMSINH DESAI UNIVERSITY, NADIAD
1) LaTeX Introduction
2) LaTeX Benefits
3) LaTeX Editors
4) First document in LaTeX
5) Text formatting
6) Custom commands
7) Table of Contents
Content
8) Lists
9) Images
10) Tables
11) Mathematics
Content
• LaTeX (pronounced either "Lah-tech" or "Lay-tech") is a
software for typesetting documents.
• It's a document preparation system.
• It is not a word processor, but is used as a document markup
language.
• It is a free, open source software.
• It was originally written by Leslie Lamport and is based
on the TeX typesetting engine by Donald Knuth.
LaTeX Introduction
• It is well-suited for scientific and technical documents.
• Its superior for typesetting of mathematical formulas.
• It produces very high quality output, it is extremely stable, and
handles complex documents easily no matter how large they
are.
• Its cross-referencing capabilities, its automatic numbering and
generation of lists of contents, figures and tables, indexes,
glossaries, and bibliographies.
LaTeX Benefits
• It is multilingual with language-specific features.
• Produces the output in PostScript, PDF, DVI, and HTML format.
• It is incredibly flexible—there are templates for letters,
presentations, bills, philosophy books, law texts, music scores,
and even for chess game notations.
• It is available for Windows, Linux, Mac OS X, and others
• Its file format is plain text – readable and editable.
• It will produce the same output on all operating systems.
LaTeX Benefits
• MikTex
• TeXstudio
• TexLive
• TeXworks
• TexMaker
• TeXnicCenter
• Gummi
• Lyx
LaTeX Editors (Offline)
• Overleaf
• ShareLatex
• Papeeria
• CoCalc
• LatexBase
• LatexLab
• Sciweavers
• Authorea
LaTeX Editors (Online)
documentclass[a4paper, 12pt]{article}
title{Introduction to LaTeX}
author{Prof. Prashant Jadav}
begin{document}
maketitle
This is my first LaTeX document
end{document}
Creating First Document
Preamble
Command
Environment
Output in PDF Format
• LaTeX commands begin with a backslash, followed by big or
small letters.
• Commands may have arguments, given in curly braces or in
square brackets.
• Calling a command looks like the following:
command[optional argument]{argument}
• There could be several arguments, each of them in braces or
brackets.
• Arguments in curly braces are mandatory.
LaTeX Commands
begin{document}
maketitle
section{Introduction}
This is the
first paragraph.
This is the second paragraph.
end{document}
Spaces, Line Breaks, Paragraphs
Spaces, Line Breaks, Paragraphs
• LaTeX treats multiple spaces just like a single space.
• A single line break has the same effect like a single space.
• It doesn't matter how you arrange your text in the editor
using spaces or breaks, the output will stay the same.
• A blank line denotes a paragraph break.
• Multiple empty lines are treated as one.
• Everything following a percent sign (% symbol used as
comment) until the end of the line will be ignored by LaTeX.
Spaces, Line Breaks, Paragraphs and Comments
section{Writing Special Characters}
Statement #1:
50% of $100 makes $50.

More special symbols are &, _, { and }.

textbackslash
Writing Special Characters
Writing Special Characters
Bolds, Italics and Underlining
Text can be emph{emphasized}.
textit{italic} words could be textbf{bold}.
textsl{slanted} or in textsc{Small Caps}.
Commands can be textit{textbf{nested}}.
emph{Here emph{emphasizing} nested.}
Bolds, Italics and Underlining
Fonts Sizes
Fonts Families
Fonts Styles
Text Alignments
begin{flushleft}
This is left aligned.
end{flushleft}
begin{flushright}
This is right aligned.
end{flushright}
begin{center}
This is center aligned.
end{center}
begin{centering}
This is a justified Text.
end{centering}
Text Alignments
Custom Commands
newcommand{TUG}{TeX Users Group}
begin{document}
section{Creating Custom Commands}
The TUG is an organization for people who are
interested in TeX or LaTeX.
end{document}
Custom Commands
Creating a Macro
documentclass{article}
newcommand{keyword}[1]{textbf{#1}}
begin{document}
section{Defining a Macro and using it}
keyword{Grouping} by curly braces limits the
keyword{scope} of keyword{declarations}.
end{document}
Creating a Macro
newcommand
Command with Optional Arguments
documentclass{article}
newcommand{keyword}[2][bfseries]{{#1#2}}
begin{document}
section{Macro with Optional Arguments}
keyword{Grouping} by curly braces limits the
keyword{scope} of
keyword[itshape]{declarations}.
end{document}
Command with Optional Arguments
Two Columns
documentclass[a4paper,12pt]{article}
usepackage[english]{babel}
usepackage{blindtext}
begin{document}
twocolumn
blindtext[5]
end{document}
Two Columns (Output)
Multiple Columns
documentclass{article}
usepackage{blindtext}
usepackage{multicol}
begin{document}
begin{multicols}{3}
[
section{Multiple Columns Example}
This is a document with 3 columns.
]
blindtext[2]
end{multicols}
end{document}
Table of Contents
documentclass[a4paper,12pt]{book}
usepackage[english]{babel}
usepackage{blindtext}
usepackage[a4paper, inner=1.5cm, outer=3cm, top=2cm, bottom=3cm,
bindingoffset=1cm] {geometry}
begin{document}
tableofcontents
chapter{Exploring the page layout}
In this chapter we will study the layout of pages.
section{Some filler text}
blindtext
section{A lot more filler text}
More dummy text will follow.
subsection{Plenty of filler text}
blindtext[10]
end{document}
Table of Contents (First Page Output)
Lists in LaTeX
Various types of list in LaTeX:
• itemize environment for creating a bulleted (unordered) list
• enumerate environment for creating a numbered (ordered) list
• description environment for creating a list of descriptions
Unordered List
section{Creating an Unordered List}
Lists are easy to create:
begin{itemize}
item start with the verb|item| command.
item Entries start with bullets.
item The text may be of any length.
end{itemize}
Unordered List (Output)
Ordered List
begin{enumerate}
item Items are numbered automatically.
item start at 1 with each texttt{enumerate}.
item Another entry in the list
end{enumerate}
Ordered List (Output)
Description List
begin{description}
item This is an entry textit{without} a label.
item[Something short] A short one-line description.
item[Something long] A much longer description.
blindtext[1]
end{description}
Description List (Output)
Inserting Images
documentclass[a4paper, 12pt]{article}
usepackage{graphicx}
graphicspath{ {./images/} }
begin{document}
section{Inserting Images in a document}
The universe is immense and it seems to be homogeneous,
in a large scale, everywhere we look at.
includegraphics{galaxy}
There's a picture of a galaxy above
end{document}
Image by StockSnap from Pixabay
Changing the image size and rotation
includegraphics[scale=0.5, angle=45]{galaxy}
Creating Tables
begin{center}
begin{tabular}{ c c c }
cell1 & cell2 & cell3 
cell4 & cell5 & cell6 
cell7 & cell8 & cell9
end{tabular}
end{center}
begin{center}
begin{tabular}{ |c|c|c| }
hline
cell1 & cell2 & cell3 
cell4 & cell5 & cell6 
cell7 & cell8 & cell9 
hline
end{tabular}
end{center}
Combining Columns
begin{center}
begin{tabular}{ |c|c|c|c| }
hline
multicolumn{3}{|c|}{Combined Columns}
hline
col1 & col2 & col3 
col4 & col5 & col6 
col7 & col8 & col9 
hline
end{tabular}
end{center}
Combining Rows
usepackage{multirow}
begin{tabular}{ |c|c|c|c| }
hline
col1 & col2 & col3 
hline
multirow{3}{4em}{Multiple row} & cell2 & cell3 
& cell5 & cell6 
& cell8 & cell9 
hline
end{tabular}
Greek
Letters
Arrows
Miscellaneous
symbols
Binary
Operation/
Relation
Symbols
Mathematical Modes
LATEX allows two writing modes for mathematical
expressions:
• inline math mode is used to write formulas that are part
of a paragraph
• display math mode is used to write expressions that are
not part of a paragraph, and are therefore put on
separate lines
Inline Math Mode
You can use any of these "delimiters" to typeset your
math in inline mode:
(...)
$...$
begin{math}...end{math}
Display Math Mode
Use one of these constructions:
[...]
begin{displaymath}...end{displaymath}
begin{equation}...end{equation}
Mathematical Expressions
begin{document}
The Pythagorean theorem (x^2 + y^2 = z^2) was
proved to be invalid for other exponents.
Meaning the next equation has no integer
solutions:
[ x^n + y^n = z^n ]
end{document}
Display Math Mode (with equation number)
The mass-energy equivalence is described by the equation
begin{equation}
E=mc^2
end{equation}
discovered in 1905 by Albert Einstein.
begin{equation}
E=m
end{equation}
Display Math Mode (with equation number)
Subscript and Superscript
[ intlimits_0^1 x^2 + y^2  dx ]
Operators using subscripts and superscripts
[ sum_{i=1}^{infty} frac{1}{n^s}
= prod_p frac{1}{1 - p^{-s}} ]
Brackets and Parentheses
Brackets and Parentheses
[
F = G left( frac{m_1 m_2}{r^2} right)
]
Aligning Equations with amsmath package
begin{align*}
x&=y & w &=z & a&=b+c
2x&=-y & 3w&=frac{1}{2}z & a&=b
-4 + 5x&=2+y & w+2&=-1+w & ab&=cb
end{align*}
Spacing Commands (use amsmath package)
Spacing Commands (Example)
begin{align*}
f(x) &= x^2! +3x! +2 
f(x) &= x^2+3x+2 
f(x) &= x^2, +3x, +2 
f(x) &= x^2: +3x: +2 
f(x) &= x^2; +3x; +2 
f(x) &= x^2 +3x +2 
f(x) &= x^2quad +3xquad +2 
f(x) &= x^2qquad +3xqquad +2
end{align*}
Spacing Commands (Output)
Invisible Brackets
(left. and right.)
usepackage{amsmath}
begin{align*}
y = 1 + & left( frac{1}{x} + frac{1}{x^2} + frac{1}{x^3} +
ldots right. 
&left. quad + frac{1}{x^{n-1}} + frac{1}{x^n} right)
end{align*}
1) Use of align* environment for not numbering the equations.
2) Use of ‘&’ symbol for aligning the multiple equations.
amsmath
matrix
environments
amsmath
matrix
environments
Continued Fractions
[
frac{1+frac{a}{b}}{1+frac{1}{1+frac{1}{a}}}
]
References
• LaTeX Beginner’s Guide, Stefan Kottwitz, PACKT
Publishing
• https://www.overleaf.com/learn
•https://ctan.org/tex-
archive/info/lshort/english/?lang=en

Contenu connexe

Tendances

Introduction to LaTeX
Introduction to LaTeXIntroduction to LaTeX
Introduction to LaTeX
satish_annigeri
 
Introduction to LaTeX
Introduction to LaTeXIntroduction to LaTeX
Introduction to LaTeX
sahirbhatnagar
 
Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and Practices
Mohamed Alrshah
 
LaTeX Basics
LaTeX BasicsLaTeX Basics
LaTeX Basics
Kristen Sauby
 
Academic writing in LaTeX
Academic writing in LaTeX Academic writing in LaTeX
Academic writing in LaTeX
Daniele Di Mitri
 
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
 
Advanced latex
Advanced latexAdvanced latex
Advanced latex
awverret
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 
Introduction to Overleaf Workshop
Introduction to Overleaf WorkshopIntroduction to Overleaf Workshop
Introduction to Overleaf Workshop
Olga Scrivner
 
Libre Office Calc Lesson 1: Introduction to spreadsheets
Libre Office Calc Lesson 1: Introduction to spreadsheetsLibre Office Calc Lesson 1: Introduction to spreadsheets
Libre Office Calc Lesson 1: Introduction to spreadsheets
Smart Chicago Collaborative
 
Bootstrap
BootstrapBootstrap
Bootstrap
Jadson Santos
 
documents writing with LATEX
documents writing with LATEXdocuments writing with LATEX
documents writing with LATEX
Anusha Vajrapu
 
LaTeX Survival Guide
LaTeX Survival Guide LaTeX Survival Guide
LaTeX Survival Guide
Dylan Seychell
 
Title, heading and paragraph tags
Title, heading and paragraph tagsTitle, heading and paragraph tags
Title, heading and paragraph tags
Sara Corpuz
 
Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)
AakankshaR
 
Latex slides
Latex slidesLatex slides
Latex slides
Dr. Vijay Ukani
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout
Rachel Andrew
 
Html Ppt
Html PptHtml Ppt
Html Ppt
vijayanit
 
Python programming : List and tuples
Python programming : List and tuplesPython programming : List and tuples
Python programming : List and tuples
Emertxe Information Technologies Pvt Ltd
 
Microsoft Office Excel 2003 Sorting And Filtering
Microsoft Office Excel 2003 Sorting And FilteringMicrosoft Office Excel 2003 Sorting And Filtering
Microsoft Office Excel 2003 Sorting And Filtering
Marc Morgenstern
 

Tendances (20)

Introduction to LaTeX
Introduction to LaTeXIntroduction to LaTeX
Introduction to LaTeX
 
Introduction to LaTeX
Introduction to LaTeXIntroduction to LaTeX
Introduction to LaTeX
 
Latex workshop: Essentials and Practices
Latex workshop: Essentials and PracticesLatex workshop: Essentials and Practices
Latex workshop: Essentials and Practices
 
LaTeX Basics
LaTeX BasicsLaTeX Basics
LaTeX Basics
 
Academic writing in LaTeX
Academic writing in LaTeX Academic writing in LaTeX
Academic writing in LaTeX
 
Introduction to LaTeX (For Word users)
 Introduction to LaTeX (For Word users) Introduction to LaTeX (For Word users)
Introduction to LaTeX (For Word users)
 
Advanced latex
Advanced latexAdvanced latex
Advanced latex
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Introduction to Overleaf Workshop
Introduction to Overleaf WorkshopIntroduction to Overleaf Workshop
Introduction to Overleaf Workshop
 
Libre Office Calc Lesson 1: Introduction to spreadsheets
Libre Office Calc Lesson 1: Introduction to spreadsheetsLibre Office Calc Lesson 1: Introduction to spreadsheets
Libre Office Calc Lesson 1: Introduction to spreadsheets
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
documents writing with LATEX
documents writing with LATEXdocuments writing with LATEX
documents writing with LATEX
 
LaTeX Survival Guide
LaTeX Survival Guide LaTeX Survival Guide
LaTeX Survival Guide
 
Title, heading and paragraph tags
Title, heading and paragraph tagsTitle, heading and paragraph tags
Title, heading and paragraph tags
 
Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)
 
Latex slides
Latex slidesLatex slides
Latex slides
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout
 
Html Ppt
Html PptHtml Ppt
Html Ppt
 
Python programming : List and tuples
Python programming : List and tuplesPython programming : List and tuples
Python programming : List and tuples
 
Microsoft Office Excel 2003 Sorting And Filtering
Microsoft Office Excel 2003 Sorting And FilteringMicrosoft Office Excel 2003 Sorting And Filtering
Microsoft Office Excel 2003 Sorting And Filtering
 

Similaire à Latex Introduction for Beginners

LaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.pptLaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.ppt
Michalis33
 
LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with Texstudio
Hossein Babashah
 
Latex ppt copy
Latex ppt   copyLatex ppt   copy
Latex ppt copy
Rajesh Kumar
 
Latex Tutorial
Latex TutorialLatex Tutorial
Latex Tutorial
Mamoon R Malik
 
Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latex
tran dinh
 
Latex intro
Latex introLatex intro
Latex intro
NEERAJ BAGHEL
 
Latex for beginners
Latex for beginnersLatex for beginners
Latex for beginners
Kaushik Naik
 
Latex Tutorial by Dr. M. C. Hanumantharaju
Latex Tutorial by Dr. M. C. HanumantharajuLatex Tutorial by Dr. M. C. Hanumantharaju
Latex Tutorial by Dr. M. C. Hanumantharaju
BMS Institute of Technology and Management
 
Latex Notes
Latex NotesLatex Notes
Latex Notes
Sudhanshu Janwadkar
 
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
Jim Webb
 
Latex - Companion for a Researcher - A Review.ppt
Latex - Companion for a Researcher - A Review.pptLatex - Companion for a Researcher - A Review.ppt
Latex - Companion for a Researcher - A Review.ppt
LadallaRajKumar
 
La tex basics
La tex basicsLa tex basics
La tex basics
awverret
 
Latex intro s_dutta_v2
Latex intro s_dutta_v2Latex intro s_dutta_v2
Latex intro s_dutta_v2
SoumyoDutta
 
Chap03 scr
Chap03 scrChap03 scr
Chap03 scr
Hirwanto Iwan
 
latex.pptx
latex.pptxlatex.pptx
latex.pptx
muhammadzeeshan607
 
latex-workshop Dr: Mohamed A. Alrshah
latex-workshop Dr: Mohamed A. Alrshahlatex-workshop Dr: Mohamed A. Alrshah
latex-workshop Dr: Mohamed A. Alrshah
Abdulazim N.Elaati
 
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
 
Head first latex
Head first latexHead first latex
Head first latex
Chung-Hsiang Ofa Hsueh
 
Python Tutorial Part 1
Python Tutorial Part 1Python Tutorial Part 1
Python Tutorial Part 1
Haitham El-Ghareeb
 
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
 

Similaire à Latex Introduction for Beginners (20)

LaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.pptLaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.ppt
 
LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with Texstudio
 
Latex ppt copy
Latex ppt   copyLatex ppt   copy
Latex ppt copy
 
Latex Tutorial
Latex TutorialLatex Tutorial
Latex Tutorial
 
Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latex
 
Latex intro
Latex introLatex intro
Latex intro
 
Latex for beginners
Latex for beginnersLatex for beginners
Latex for beginners
 
Latex Tutorial by Dr. M. C. Hanumantharaju
Latex Tutorial by Dr. M. C. HanumantharajuLatex Tutorial by Dr. M. C. Hanumantharaju
Latex Tutorial by Dr. M. C. Hanumantharaju
 
Latex Notes
Latex NotesLatex Notes
Latex Notes
 
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
 
Latex - Companion for a Researcher - A Review.ppt
Latex - Companion for a Researcher - A Review.pptLatex - Companion for a Researcher - A Review.ppt
Latex - Companion for a Researcher - A Review.ppt
 
La tex basics
La tex basicsLa tex basics
La tex basics
 
Latex intro s_dutta_v2
Latex intro s_dutta_v2Latex intro s_dutta_v2
Latex intro s_dutta_v2
 
Chap03 scr
Chap03 scrChap03 scr
Chap03 scr
 
latex.pptx
latex.pptxlatex.pptx
latex.pptx
 
latex-workshop Dr: Mohamed A. Alrshah
latex-workshop Dr: Mohamed A. Alrshahlatex-workshop Dr: Mohamed A. Alrshah
latex-workshop Dr: Mohamed A. Alrshah
 
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
 
Head first latex
Head first latexHead first latex
Head first latex
 
Python Tutorial Part 1
Python Tutorial Part 1Python Tutorial Part 1
Python Tutorial Part 1
 
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
 

Dernier

Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
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
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
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
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
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
 
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)
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
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
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
S. Raj Kumar
 
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
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
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
 

Dernier (20)

Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
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
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
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)
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
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...
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
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
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
 
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
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
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
 

Latex Introduction for Beginners