SlideShare a Scribd company logo
Motivation Installation Typeset Compile

A
Document design in L TEX

The motivation
Suddhasheel Ghosh
1 Department of Civil Engineering
MGM’s Jawaharlal Nehru Engineering College,
Aurangabad, MH
2 MGM

- Institute of Biosciences and Technology
Aurangabad, MH

The LaTeX workshop

shudh

Mathematics
Motivation Installation Typeset Compile

Outline
1

Motivation

2

Getting ready with our machinery
Installing it on Windows
Installing it on Linux

3

Fundas of document typesetting
The preamble
The body
Typesetting mathematics
Tables

4

Compiling a LaTeX file

shudh

Mathematics
Motivation Installation Typeset Compile

Outline
1

Motivation

2

Getting ready with our machinery
Installing it on Windows
Installing it on Linux

3

Fundas of document typesetting
The preamble
The body
Typesetting mathematics
Tables

4

Compiling a LaTeX file

shudh

Mathematics
Motivation Installation Typeset Compile

A brief history

shudh

Mathematics
Motivation Installation Typeset Compile

Why should I use LaTeX

I do not wish to use “commercial” software
I am not happy with the mathematical rendering of the
“Commercial software”
Too much mathematical content in my documents and I
am tired of the click-find-click-type-repeat
Math makes my documents look badly formatted
I like typing more than clicking
I would like to explore

shudh

Mathematics
Motivation Installation Typeset Compile

Windows Linux

Outline
1

Motivation

2

Getting ready with our machinery
Installing it on Windows
Installing it on Linux

3

Fundas of document typesetting
The preamble
The body
Typesetting mathematics
Tables

4

Compiling a LaTeX file

shudh

Mathematics
Motivation Installation Typeset Compile

Windows Linux

Our requirements
The basic tools
A LaTeX distribution
A LaTeX document editor: preferably one which can edit
LaTeX documents and compile them too.
A document visualizer: preferably a PDF viewer
The advanced tools
A bibliography management software
A WYSIWYG editor
A GUI environment for drawing plots / graphs of functions
Image editing software
In this session, we present the basic tools for design.
shudh

Mathematics
Motivation Installation Typeset Compile

Windows Linux

Our requirements
The basic tools
A LaTeX distribution
A LaTeX document editor: preferably one which can edit
LaTeX documents and compile them too.
A document visualizer: preferably a PDF viewer
The advanced tools
A bibliography management software
A WYSIWYG editor
A GUI environment for drawing plots / graphs of functions
Image editing software
In this session, we present the basic tools for design.
shudh

Mathematics
Motivation Installation Typeset Compile

Windows Linux

Our requirements
The basic tools
A LaTeX distribution
A LaTeX document editor: preferably one which can edit
LaTeX documents and compile them too.
A document visualizer: preferably a PDF viewer
The advanced tools
A bibliography management software
A WYSIWYG editor
A GUI environment for drawing plots / graphs of functions
Image editing software
In this session, we present the basic tools for design.
shudh

Mathematics
Motivation Installation Typeset Compile

Windows Linux

Our requirements
The basic tools
A LaTeX distribution
A LaTeX document editor: preferably one which can edit
LaTeX documents and compile them too.
A document visualizer: preferably a PDF viewer
The advanced tools
A bibliography management software
A WYSIWYG editor
A GUI environment for drawing plots / graphs of functions
Image editing software
In this session, we present the basic tools for design.
shudh

Mathematics
Motivation Installation Typeset Compile

Windows Linux

Getting our machinery ready
On Microsoft Windows

LaTeX distribution:
MikTeX (www.miktex.org).
Download the basic installer. Installs required packages
‘on-the-fly’.

LaTeX Editor:
Open Source: TeXnicCenter (www.texniccenter.org)
Commercial: WinEdt
With the distribution: TeXWorks recommended

PDF Viewer: Adobe Acrobat Reader (freely downloadable)

shudh

Mathematics
Motivation Installation Typeset Compile

Windows Linux

Getting our machinery ready
On Linux

LaTeX distribution: TexLive
Debian based: sudo apt-get install texlive
Red Hat based: sudo yum install texlive

LaTeX Editor:
TeXworks
TeXStudio
GEdit with the LaTeX plugins

PDF Viewer: Evince, Okular
Linux Systems
Debian based: Debian, Ubuntu, Mint, Pinguy, ...
Red Hat based: RHEL, Febora, Suse, ...

shudh

Mathematics
Motivation Installation Typeset Compile

Preamble The body Math Tables

Outline
1

Motivation

2

Getting ready with our machinery
Installing it on Windows
Installing it on Linux

3

Fundas of document typesetting
The preamble
The body
Typesetting mathematics
Tables

4

Compiling a LaTeX file

shudh

Mathematics
Motivation Installation Typeset Compile

Preamble The body Math Tables

Dissecting a LaTeX file
Properties

File extension: .tex
File parts
The preamble
The body

shudh

Mathematics
Motivation Installation Typeset Compile

Preamble The body Math Tables

The preamble
Contents

Announcement of the class template: Typically
documentclass[a4paper,10pt]{article}
Optional: List of packages to be used. Looks like
usepackage{...}
Optional: Font face specifications
Optional: Definitions and other macros

shudh

Mathematics
Motivation Installation Typeset Compile

Preamble The body Math Tables

The body
Contents

Sections, subsections and subsubsections
Math: Inline, Display and equations
Figures
Tables
Typical body layout
begin{document}
section{My first section}
subsection{My sub section}
subsubsection{More details}
subsection{Another sub section}
subsubsection{Some more details}
...
end{document}
shudh

Mathematics
Motivation Installation Typeset Compile

Preamble The body Math Tables

Typesetting mathematics
Inline, display and equations
All inline math have to be surrounded by $, display math by $$, and
equations by begin{equation} . . . end{equation}
Output

Source
The second order algebraic
polynomial is given by $x^2
+ x + 1$. This can be
written in the display
mode as
$$ x^2 + x + 1. $$
The equation of the
circle with radius $a$
is given as
begin{equation}
x^2 + y^2 = a^2
end{equation}

The second order algebraic
polynomial is given by x2 + x + 1.
This can be written in the display
mode as
x2 + x + 1
The equation of the circle with radius
a is given as:
x2 + y2 = a2

More details on mathematical typesetting are in my presentation:
Typesetting Mathematics in LaTeX: Getting your hands dirty
shudh

Mathematics

(1)
Motivation Installation Typeset Compile

Preamble The body Math Tables

Setting up tables
begin{table}
centering
begin{tabular}{|l|c|r|c|}
hline
Clothing & Quantity & Rate & Place  hline
Paithani & 1 & 1135.00 & Marathwada  hline
Baluchari &2 &1345.00 &Orissa  hline
Banarasi & 5 & 923.00 &Uttar Pradesh  hline
end{tabular}
end{table}

Clothing
Paithani
Baluchari
Banarasi

Quantity
1
2
5

Rate
1135.00
1345.00
923.00

Place
Marathwada
Orissa
Uttar Pradesh

l - indicates left justified column, r - indicates right justified
column and c - indicates center justified column. More details
are covered in Writing Journal papers in LaTeX: A complete
tour
shudh

Mathematics
Motivation Installation Typeset Compile

Preamble The body Math Tables

Setting up images
This requires
usepackage{graphicx}
in the preamble
begin{figure}
centering
includegraphics[width=0.8textwidth]{dumbledore.jpg}
caption{Dumbledore passes away}
end{figure}

Figure : Dumbledore passes away

This image has been taken from
http://harrypotter.wikia.com.
shudh

Mathematics
Motivation Installation Typeset Compile

Outline
1

Motivation

2

Getting ready with our machinery
Installing it on Windows
Installing it on Linux

3

Fundas of document typesetting
The preamble
The body
Typesetting mathematics
Tables

4

Compiling a LaTeX file

shudh

Mathematics
Motivation Installation Typeset Compile

Compiling the LaTeX code
The compilation can be done with
latex - produces DVI files
pslatex - produces PS files
pdflatex - produces PDF files
If the name of the file is mypaper.tex the command lines are:
latex mypaper.tex
pslatex mypaper.tex
pdflatex mypaper.tex
LaTeX editors like TeXnicCenter, WinEdt, TeXworks, Kile,
TeXStudio automatically run these commands based on the
preferences set.

shudh

Mathematics

More Related Content

What's hot

LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with Texstudio
Hossein Babashah
 
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 slides
Latex slidesLatex slides
Latex slides
Dr. Vijay Ukani
 
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
 
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
 
A gentle introduction to Latex
A gentle introduction to LatexA gentle introduction to Latex
A gentle introduction to Latex
Emmanuel Abatih
 
LaTeX Introduction for Word Users
LaTeX Introduction for Word UsersLaTeX Introduction for Word Users
LaTeX Introduction for Word Users
Guy K. Kloss
 
Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3
Suddhasheel GHOSH, PhD
 
LaTeX Part 1
LaTeX Part 1LaTeX Part 1
LaTeX Part 1
awv7t
 
Latex workshop
Latex workshopLatex workshop
Latex workshop
Aisha Abdullahi
 
Latex for beginner
Latex for beginnerLatex for beginner
Latex for beginner
mahindrupali
 
LaTeX Tutorial
LaTeX TutorialLaTeX Tutorial
LaTeX Tutorial
Tai Lun Tseng
 
Editing documents with LaTeX
Editing documents with LaTeXEditing documents with LaTeX
Editing documents with LaTeX
Laura M. Castro
 
Training basic latex
Training basic latexTraining basic latex
Training basic latex
University of Technology
 
LaTeX Part 2
LaTeX Part 2LaTeX Part 2
LaTeX Part 2
awv7t
 
Latex Notes
Latex NotesLatex Notes
Latex Notes
Sudhanshu Janwadkar
 
scientific writing 01 - latex
scientific writing   01 - latexscientific writing   01 - latex
scientific writing 01 - latex
Leo Chen
 
LaTeX Survival Guide
LaTeX Survival Guide LaTeX Survival Guide
LaTeX Survival Guide
Dylan Seychell
 
documents writing with LATEX
documents writing with LATEXdocuments writing with LATEX
documents writing with LATEX
Anusha Vajrapu
 

What's hot (20)

LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with Texstudio
 
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 slides
Latex slidesLatex slides
Latex slides
 
Research 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeXResearch 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeX
 
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
 
A gentle introduction to Latex
A gentle introduction to LatexA gentle introduction to Latex
A gentle introduction to Latex
 
LaTeX Introduction for Word Users
LaTeX Introduction for Word UsersLaTeX Introduction for Word Users
LaTeX Introduction for Word Users
 
Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3
 
LaTeX Part 1
LaTeX Part 1LaTeX Part 1
LaTeX Part 1
 
Latex workshop
Latex workshopLatex workshop
Latex workshop
 
Latex for beginner
Latex for beginnerLatex for beginner
Latex for beginner
 
LaTeX Tutorial
LaTeX TutorialLaTeX Tutorial
LaTeX Tutorial
 
Editing documents with LaTeX
Editing documents with LaTeXEditing documents with LaTeX
Editing documents with LaTeX
 
Training basic latex
Training basic latexTraining basic latex
Training basic latex
 
LaTeX Part 2
LaTeX Part 2LaTeX Part 2
LaTeX Part 2
 
Latex Notes
Latex NotesLatex Notes
Latex Notes
 
scientific writing 01 - latex
scientific writing   01 - latexscientific writing   01 - latex
scientific writing 01 - latex
 
LaTeX Survival Guide
LaTeX Survival Guide LaTeX Survival Guide
LaTeX Survival Guide
 
documents writing with LATEX
documents writing with LATEXdocuments writing with LATEX
documents writing with LATEX
 

Viewers also liked

45324291 a-good-ph d-student
45324291 a-good-ph d-student45324291 a-good-ph d-student
45324291 a-good-ph d-student
Suddhasheel GHOSH, PhD
 
Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2
Suddhasheel GHOSH, PhD
 
Making presentations with LaTeX: Workshop Day 4
Making presentations with LaTeX: Workshop Day 4Making presentations with LaTeX: Workshop Day 4
Making presentations with LaTeX: Workshop Day 4
Suddhasheel GHOSH, PhD
 
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
Suddhasheel GHOSH, PhD
 
Point Collocation Method used in the solving of Differential Equations, parti...
Point Collocation Method used in the solving of Differential Equations, parti...Point Collocation Method used in the solving of Differential Equations, parti...
Point Collocation Method used in the solving of Differential Equations, parti...
Suddhasheel GHOSH, PhD
 
Software Design Document
Software Design DocumentSoftware Design Document
Software Design Document
Nadia Nahar
 
Software Architectural And Detailed Design Description Template
Software Architectural And Detailed Design Description TemplateSoftware Architectural And Detailed Design Description Template
Software Architectural And Detailed Design Description Template
Arash Sharif
 
Software Design Description (SDD) sample
Software Design Description (SDD) sampleSoftware Design Description (SDD) sample
Software Design Description (SDD) sample
Peny Gama
 
Example for SDS document in Software engineering
Example for SDS document in Software engineeringExample for SDS document in Software engineering
Example for SDS document in Software engineering
Ravi Yasas
 
How to Create a Slideshare Account
How to Create a Slideshare AccountHow to Create a Slideshare Account
How to Create a Slideshare Account
Ana Villarmente
 
Design of FIR filters
Design of FIR filtersDesign of FIR filters
Design of FIR filters
op205
 

Viewers also liked (11)

45324291 a-good-ph d-student
45324291 a-good-ph d-student45324291 a-good-ph d-student
45324291 a-good-ph d-student
 
Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2Typesetting Mathematics with LaTeX - Day 2
Typesetting Mathematics with LaTeX - Day 2
 
Making presentations with LaTeX: Workshop Day 4
Making presentations with LaTeX: Workshop Day 4Making presentations with LaTeX: Workshop Day 4
Making presentations with LaTeX: Workshop Day 4
 
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
 
Point Collocation Method used in the solving of Differential Equations, parti...
Point Collocation Method used in the solving of Differential Equations, parti...Point Collocation Method used in the solving of Differential Equations, parti...
Point Collocation Method used in the solving of Differential Equations, parti...
 
Software Design Document
Software Design DocumentSoftware Design Document
Software Design Document
 
Software Architectural And Detailed Design Description Template
Software Architectural And Detailed Design Description TemplateSoftware Architectural And Detailed Design Description Template
Software Architectural And Detailed Design Description Template
 
Software Design Description (SDD) sample
Software Design Description (SDD) sampleSoftware Design Description (SDD) sample
Software Design Description (SDD) sample
 
Example for SDS document in Software engineering
Example for SDS document in Software engineeringExample for SDS document in Software engineering
Example for SDS document in Software engineering
 
How to Create a Slideshare Account
How to Create a Slideshare AccountHow to Create a Slideshare Account
How to Create a Slideshare Account
 
Design of FIR filters
Design of FIR filtersDesign of FIR filters
Design of FIR filters
 

Similar to The LaTeX Workshop: Document design in LaTeX: Invocation

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
 
Language-agnostic data analysis workflows and reproducible research
Language-agnostic data analysis workflows and reproducible researchLanguage-agnostic data analysis workflows and reproducible research
Language-agnostic data analysis workflows and reproducible research
Andrew Lowe
 
Hands on Mahout!
Hands on Mahout!Hands on Mahout!
Hands on Mahout!
OSCON Byrum
 
LaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.pptLaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.ppt
Michalis33
 
Latex ppt copy
Latex ppt   copyLatex ppt   copy
Latex ppt copy
Rajesh Kumar
 
Latex for beginners
Latex for beginnersLatex for beginners
Latex for beginners
Kaushik Naik
 
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
 
LATEX.ppt
LATEX.pptLATEX.ppt
LATEX.ppt
Rajesh Patel
 
Installation guide for Latex and MOODLE
Installation guide for Latex and MOODLEInstallation guide for Latex and MOODLE
Installation guide for Latex and MOODLE
abigail4894
 
Combinators, DSLs, HTML and F#
Combinators, DSLs, HTML and F#Combinators, DSLs, HTML and F#
Combinators, DSLs, HTML and F#Robert Pickering
 
La tex basics
La tex basicsLa tex basics
La tex basics
awverret
 
LaTeX로 문서 작성하자
LaTeX로 문서 작성하자LaTeX로 문서 작성하자
LaTeX로 문서 작성하자
Kangjun Heo
 
Getting started with R
Getting started with RGetting started with R
Tailieu.vncty.com c++ for beginners......masters 2007
Tailieu.vncty.com c++ for beginners......masters 2007Tailieu.vncty.com c++ for beginners......masters 2007
Tailieu.vncty.com c++ for beginners......masters 2007
Trần Đức Anh
 
maple project.pptx
maple project.pptxmaple project.pptx
maple project.pptx
VarunSharma966537
 
3.4 Summary This chapter included the system of the device and c.docx
3.4 Summary This chapter included the system of the device and c.docx3.4 Summary This chapter included the system of the device and c.docx
3.4 Summary This chapter included the system of the device and c.docx
rhetttrevannion
 
R basics
R basicsR basics
R basics
Sagun Baijal
 
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
 

Similar to The LaTeX Workshop: Document design in LaTeX: Invocation (20)

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
 
Language-agnostic data analysis workflows and reproducible research
Language-agnostic data analysis workflows and reproducible researchLanguage-agnostic data analysis workflows and reproducible research
Language-agnostic data analysis workflows and reproducible research
 
Hands on Mahout!
Hands on Mahout!Hands on Mahout!
Hands on Mahout!
 
LaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.pptLaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.ppt
 
Latex ppt copy
Latex ppt   copyLatex ppt   copy
Latex ppt copy
 
Latex for beginners
Latex for beginnersLatex for beginners
Latex for beginners
 
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
 
LATEX.ppt
LATEX.pptLATEX.ppt
LATEX.ppt
 
Installation guide for Latex and MOODLE
Installation guide for Latex and MOODLEInstallation guide for Latex and MOODLE
Installation guide for Latex and MOODLE
 
Combinators, DSLs, HTML and F#
Combinators, DSLs, HTML and F#Combinators, DSLs, HTML and F#
Combinators, DSLs, HTML and F#
 
La tex basics
La tex basicsLa tex basics
La tex basics
 
LaTeX로 문서 작성하자
LaTeX로 문서 작성하자LaTeX로 문서 작성하자
LaTeX로 문서 작성하자
 
Getting started with R
Getting started with RGetting started with R
Getting started with R
 
Tailieu.vncty.com c++ for beginners......masters 2007
Tailieu.vncty.com c++ for beginners......masters 2007Tailieu.vncty.com c++ for beginners......masters 2007
Tailieu.vncty.com c++ for beginners......masters 2007
 
C++ for beginners......masters 2007
C++ for beginners......masters 2007C++ for beginners......masters 2007
C++ for beginners......masters 2007
 
C++ for beginners......masters 2007
C++ for beginners......masters 2007C++ for beginners......masters 2007
C++ for beginners......masters 2007
 
maple project.pptx
maple project.pptxmaple project.pptx
maple project.pptx
 
3.4 Summary This chapter included the system of the device and c.docx
3.4 Summary This chapter included the system of the device and c.docx3.4 Summary This chapter included the system of the device and c.docx
3.4 Summary This chapter included the system of the device and c.docx
 
R basics
R basicsR basics
R basics
 
latex-workshop Dr: Mohamed A. Alrshah
latex-workshop Dr: Mohamed A. Alrshahlatex-workshop Dr: Mohamed A. Alrshah
latex-workshop Dr: Mohamed A. Alrshah
 

More from Suddhasheel GHOSH, PhD

FEM Introduction: Solving ODE-BVP using the Galerkin's Method
FEM Introduction: Solving ODE-BVP using the Galerkin's MethodFEM Introduction: Solving ODE-BVP using the Galerkin's Method
FEM Introduction: Solving ODE-BVP using the Galerkin's Method
Suddhasheel GHOSH, PhD
 
Solve ODE - BVP through the Least Squares Method
Solve ODE - BVP through the Least Squares MethodSolve ODE - BVP through the Least Squares Method
Solve ODE - BVP through the Least Squares Method
Suddhasheel GHOSH, PhD
 
Map Calculaton using GRASS
Map Calculaton using GRASSMap Calculaton using GRASS
Map Calculaton using GRASS
Suddhasheel GHOSH, PhD
 
Watershed Analysis with GRASS
Watershed Analysis with GRASSWatershed Analysis with GRASS
Watershed Analysis with GRASS
Suddhasheel GHOSH, PhD
 
Research Prospects with Geoinformatics
Research Prospects with GeoinformaticsResearch Prospects with Geoinformatics
Research Prospects with Geoinformatics
Suddhasheel GHOSH, PhD
 
Prepare your literature review
Prepare your literature reviewPrepare your literature review
Prepare your literature review
Suddhasheel GHOSH, PhD
 
Expert Lecture on GPS at UIET, CSJM, Kanpur
Expert Lecture on GPS at UIET, CSJM, KanpurExpert Lecture on GPS at UIET, CSJM, Kanpur
Expert Lecture on GPS at UIET, CSJM, KanpurSuddhasheel GHOSH, PhD
 

More from Suddhasheel GHOSH, PhD (7)

FEM Introduction: Solving ODE-BVP using the Galerkin's Method
FEM Introduction: Solving ODE-BVP using the Galerkin's MethodFEM Introduction: Solving ODE-BVP using the Galerkin's Method
FEM Introduction: Solving ODE-BVP using the Galerkin's Method
 
Solve ODE - BVP through the Least Squares Method
Solve ODE - BVP through the Least Squares MethodSolve ODE - BVP through the Least Squares Method
Solve ODE - BVP through the Least Squares Method
 
Map Calculaton using GRASS
Map Calculaton using GRASSMap Calculaton using GRASS
Map Calculaton using GRASS
 
Watershed Analysis with GRASS
Watershed Analysis with GRASSWatershed Analysis with GRASS
Watershed Analysis with GRASS
 
Research Prospects with Geoinformatics
Research Prospects with GeoinformaticsResearch Prospects with Geoinformatics
Research Prospects with Geoinformatics
 
Prepare your literature review
Prepare your literature reviewPrepare your literature review
Prepare your literature review
 
Expert Lecture on GPS at UIET, CSJM, Kanpur
Expert Lecture on GPS at UIET, CSJM, KanpurExpert Lecture on GPS at UIET, CSJM, Kanpur
Expert Lecture on GPS at UIET, CSJM, Kanpur
 

Recently uploaded

Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
JEE1_This_section_contains_FOUR_ questions
JEE1_This_section_contains_FOUR_ questionsJEE1_This_section_contains_FOUR_ questions
JEE1_This_section_contains_FOUR_ questions
ShivajiThube2
 
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
 
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
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
chanes7
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
The Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptxThe Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptx
DhatriParmar
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 

Recently uploaded (20)

Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
JEE1_This_section_contains_FOUR_ questions
JEE1_This_section_contains_FOUR_ questionsJEE1_This_section_contains_FOUR_ questions
JEE1_This_section_contains_FOUR_ questions
 
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...
 
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)
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
The Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptxThe Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptx
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 

The LaTeX Workshop: Document design in LaTeX: Invocation

  • 1. Motivation Installation Typeset Compile A Document design in L TEX The motivation Suddhasheel Ghosh 1 Department of Civil Engineering MGM’s Jawaharlal Nehru Engineering College, Aurangabad, MH 2 MGM - Institute of Biosciences and Technology Aurangabad, MH The LaTeX workshop shudh Mathematics
  • 2. Motivation Installation Typeset Compile Outline 1 Motivation 2 Getting ready with our machinery Installing it on Windows Installing it on Linux 3 Fundas of document typesetting The preamble The body Typesetting mathematics Tables 4 Compiling a LaTeX file shudh Mathematics
  • 3. Motivation Installation Typeset Compile Outline 1 Motivation 2 Getting ready with our machinery Installing it on Windows Installing it on Linux 3 Fundas of document typesetting The preamble The body Typesetting mathematics Tables 4 Compiling a LaTeX file shudh Mathematics
  • 4. Motivation Installation Typeset Compile A brief history shudh Mathematics
  • 5. Motivation Installation Typeset Compile Why should I use LaTeX I do not wish to use “commercial” software I am not happy with the mathematical rendering of the “Commercial software” Too much mathematical content in my documents and I am tired of the click-find-click-type-repeat Math makes my documents look badly formatted I like typing more than clicking I would like to explore shudh Mathematics
  • 6. Motivation Installation Typeset Compile Windows Linux Outline 1 Motivation 2 Getting ready with our machinery Installing it on Windows Installing it on Linux 3 Fundas of document typesetting The preamble The body Typesetting mathematics Tables 4 Compiling a LaTeX file shudh Mathematics
  • 7. Motivation Installation Typeset Compile Windows Linux Our requirements The basic tools A LaTeX distribution A LaTeX document editor: preferably one which can edit LaTeX documents and compile them too. A document visualizer: preferably a PDF viewer The advanced tools A bibliography management software A WYSIWYG editor A GUI environment for drawing plots / graphs of functions Image editing software In this session, we present the basic tools for design. shudh Mathematics
  • 8. Motivation Installation Typeset Compile Windows Linux Our requirements The basic tools A LaTeX distribution A LaTeX document editor: preferably one which can edit LaTeX documents and compile them too. A document visualizer: preferably a PDF viewer The advanced tools A bibliography management software A WYSIWYG editor A GUI environment for drawing plots / graphs of functions Image editing software In this session, we present the basic tools for design. shudh Mathematics
  • 9. Motivation Installation Typeset Compile Windows Linux Our requirements The basic tools A LaTeX distribution A LaTeX document editor: preferably one which can edit LaTeX documents and compile them too. A document visualizer: preferably a PDF viewer The advanced tools A bibliography management software A WYSIWYG editor A GUI environment for drawing plots / graphs of functions Image editing software In this session, we present the basic tools for design. shudh Mathematics
  • 10. Motivation Installation Typeset Compile Windows Linux Our requirements The basic tools A LaTeX distribution A LaTeX document editor: preferably one which can edit LaTeX documents and compile them too. A document visualizer: preferably a PDF viewer The advanced tools A bibliography management software A WYSIWYG editor A GUI environment for drawing plots / graphs of functions Image editing software In this session, we present the basic tools for design. shudh Mathematics
  • 11. Motivation Installation Typeset Compile Windows Linux Getting our machinery ready On Microsoft Windows LaTeX distribution: MikTeX (www.miktex.org). Download the basic installer. Installs required packages ‘on-the-fly’. LaTeX Editor: Open Source: TeXnicCenter (www.texniccenter.org) Commercial: WinEdt With the distribution: TeXWorks recommended PDF Viewer: Adobe Acrobat Reader (freely downloadable) shudh Mathematics
  • 12. Motivation Installation Typeset Compile Windows Linux Getting our machinery ready On Linux LaTeX distribution: TexLive Debian based: sudo apt-get install texlive Red Hat based: sudo yum install texlive LaTeX Editor: TeXworks TeXStudio GEdit with the LaTeX plugins PDF Viewer: Evince, Okular Linux Systems Debian based: Debian, Ubuntu, Mint, Pinguy, ... Red Hat based: RHEL, Febora, Suse, ... shudh Mathematics
  • 13. Motivation Installation Typeset Compile Preamble The body Math Tables Outline 1 Motivation 2 Getting ready with our machinery Installing it on Windows Installing it on Linux 3 Fundas of document typesetting The preamble The body Typesetting mathematics Tables 4 Compiling a LaTeX file shudh Mathematics
  • 14. Motivation Installation Typeset Compile Preamble The body Math Tables Dissecting a LaTeX file Properties File extension: .tex File parts The preamble The body shudh Mathematics
  • 15. Motivation Installation Typeset Compile Preamble The body Math Tables The preamble Contents Announcement of the class template: Typically documentclass[a4paper,10pt]{article} Optional: List of packages to be used. Looks like usepackage{...} Optional: Font face specifications Optional: Definitions and other macros shudh Mathematics
  • 16. Motivation Installation Typeset Compile Preamble The body Math Tables The body Contents Sections, subsections and subsubsections Math: Inline, Display and equations Figures Tables Typical body layout begin{document} section{My first section} subsection{My sub section} subsubsection{More details} subsection{Another sub section} subsubsection{Some more details} ... end{document} shudh Mathematics
  • 17. Motivation Installation Typeset Compile Preamble The body Math Tables Typesetting mathematics Inline, display and equations All inline math have to be surrounded by $, display math by $$, and equations by begin{equation} . . . end{equation} Output Source The second order algebraic polynomial is given by $x^2 + x + 1$. This can be written in the display mode as $$ x^2 + x + 1. $$ The equation of the circle with radius $a$ is given as begin{equation} x^2 + y^2 = a^2 end{equation} The second order algebraic polynomial is given by x2 + x + 1. This can be written in the display mode as x2 + x + 1 The equation of the circle with radius a is given as: x2 + y2 = a2 More details on mathematical typesetting are in my presentation: Typesetting Mathematics in LaTeX: Getting your hands dirty shudh Mathematics (1)
  • 18. Motivation Installation Typeset Compile Preamble The body Math Tables Setting up tables begin{table} centering begin{tabular}{|l|c|r|c|} hline Clothing & Quantity & Rate & Place hline Paithani & 1 & 1135.00 & Marathwada hline Baluchari &2 &1345.00 &Orissa hline Banarasi & 5 & 923.00 &Uttar Pradesh hline end{tabular} end{table} Clothing Paithani Baluchari Banarasi Quantity 1 2 5 Rate 1135.00 1345.00 923.00 Place Marathwada Orissa Uttar Pradesh l - indicates left justified column, r - indicates right justified column and c - indicates center justified column. More details are covered in Writing Journal papers in LaTeX: A complete tour shudh Mathematics
  • 19. Motivation Installation Typeset Compile Preamble The body Math Tables Setting up images This requires usepackage{graphicx} in the preamble begin{figure} centering includegraphics[width=0.8textwidth]{dumbledore.jpg} caption{Dumbledore passes away} end{figure} Figure : Dumbledore passes away This image has been taken from http://harrypotter.wikia.com. shudh Mathematics
  • 20. Motivation Installation Typeset Compile Outline 1 Motivation 2 Getting ready with our machinery Installing it on Windows Installing it on Linux 3 Fundas of document typesetting The preamble The body Typesetting mathematics Tables 4 Compiling a LaTeX file shudh Mathematics
  • 21. Motivation Installation Typeset Compile Compiling the LaTeX code The compilation can be done with latex - produces DVI files pslatex - produces PS files pdflatex - produces PDF files If the name of the file is mypaper.tex the command lines are: latex mypaper.tex pslatex mypaper.tex pdflatex mypaper.tex LaTeX editors like TeXnicCenter, WinEdt, TeXworks, Kile, TeXStudio automatically run these commands based on the preferences set. shudh Mathematics