SlideShare a Scribd company logo
1 of 29
Download to read offline
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Making presentations with LATEX
Using the beamer package
Suddhasheel Ghosh
Department of Civil Engineering,
Jawaharlal Nehru Engineering College
Aurangabad, Maharashtra
431003
LATEX for Technical and Scientiļ¬c Documents
January 12 - 16, 2015
Day IV
shudh@JNEC LATEX@ JNEC 1 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Outline
1 Layout
2 Multicolumn
3 Block styles
4 Subļ¬‚oats
Figures
Tables
5 Animations
shudh@JNEC LATEX@ JNEC 2 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
In this workshop:
Day 1: Introduction to LATEX
Day 2: Typesetting Mathematics
Day 3: Writing your thesis / technical report
Day 4: Make your presentations
Day 5: Basics of science communication
shudh@JNEC LATEX@ JNEC 3 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Outline
1 Layout
2 Multicolumn
3 Block styles
4 Subļ¬‚oats
Figures
Tables
5 Animations
shudh@JNEC LATEX@ JNEC 4 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Calling the class ļ¬le
Document setup
For making presentations, we use the beamer class. Our basic .tex
ļ¬le
documentclass{beamer}
title{My first presentation}
author{Suddhasheel Ghosh}
institute{JNEC}
begin{document}
begin{frame}
titlepage
end{frame}
end{document}
It can be seen that the ā€œslidesā€ are called as ā€œframesā€ here.
shudh@JNEC LATEX@ JNEC 5 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Set the themes
Broadly, there are the following kinds of themes in beamer
Layout theme
Font theme
Color theme
%in the preamble
%set the layout theme
usetheme{Warsaw}
%set the colour theme
usecolortheme{crane}
%set the font theme
usefonttheme{serif} %by default it is sans-serif
shudh@JNEC LATEX@ JNEC 6 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Set the logo
...to appear in the corner of every page
Do you have a logo to display? If the name of the image ļ¬le is
mylogo.png, place the logo at the corner of every page by using the
following
pgfdeclareimage[height=0.5cm]{college-logo}{logo.png}
logo{pgfuseimage{college-logo}}
shudh@JNEC LATEX@ JNEC 7 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Page number setting
Many themes do not have slide-number display capability. To insert
slide numbers use:
newcommand*oldmacro{}%
letoldmacroinsertshorttitle%
renewcommand*insertshorttitle{%
oldmacrohfill%
insertframenumber,/,inserttotalframenumber}
shudh@JNEC LATEX@ JNEC 8 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
A slide with the table of contents
For having a slide with the table of contents, we use
begin{frame}{Contents}
tableofcontents
end{frame}
shudh@JNEC LATEX@ JNEC 9 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
What we have achieved till now
Slide layouts
We created a LATEX ļ¬le
We have called the beamer class
We have deļ¬ned the theme, font theme, and the colour theme.
We have inserted the logo
We have inserted numbers at the bottom of the slides
We have created the ļ¬rst slide, the title slide
We have created the slide with the table of contents
shudh@JNEC LATEX@ JNEC 10 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
How did we typeset the last one?
The code is here
%start the coding for the frame - with the title
%and the subtitle
begin{frame}{What we have achieved till now}{Slide
layouts}
begin{itemize}
item We created a LaTeX{} file
item We have called the {tt beamer} class
item We have defined the theme, font theme, and the
colour theme.
item We have inserted the logo
item We have inserted numbers at the bottom of the slides
item We have created the first slide, the title slide
item We have created the slide with the table of contents
end{itemize}
%end the coding of the frame here
end{frame}
shudh@JNEC LATEX@ JNEC 11 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Outline
1 Layout
2 Multicolumn
3 Block styles
4 Subļ¬‚oats
Figures
Tables
5 Animations
shudh@JNEC LATEX@ JNEC 12 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
A two column slide
Can you design this?
Figure 1: A muggle artefact found in
the Dark Lordā€™s bathroom
The investigator looked puzzled
when he visited the house of the
Dark Lord. He found a rubber
duck (Figure [1]) in the bathroom,
along with other suspicious
objects.
shudh@JNEC LATEX@ JNEC 13 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Designing the two column slide
The code is here!
begin{frame}{A two column slide}{Can you design
this?}
begin{columns}
begin{column}{0.5textwidth} %column width
begin{figure}
centering
includegraphics[scale=0.2]{duck.jpg}
caption{A muggle artefact found in the Dark Lord's
bathroom}label{fig:muggleduck}
end{figure}
end{column}
begin{column}{0.5textwidth}
The investigator looked puzzled when he visited the
house of the Dark Lord. He found a rubber duck
(Figure [ref{fig:muggleduck}]) in the bathroom,
along with other suspicious objects.
end{column}
end{columns}
end{frame}
shudh@JNEC LATEX@ JNEC 14 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Outline
1 Layout
2 Multicolumn
3 Block styles
4 Subļ¬‚oats
Figures
Tables
5 Animations
shudh@JNEC LATEX@ JNEC 15 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Text inside a block
Can you design this?
Deļ¬nition of a metric
The function d : X ƗX ā†’ R is known as a metric if it satisļ¬es the
following properties:
Non-negativity: d(x,y) ā‰„ 0, āˆ€x,y āˆˆ X
Identity: d(x,y) = 0 ā‡ā‡’ x = y, āˆ€x,y āˆˆ X
Symmetry: d(x,y) = d(y,x)
Triangle inequality: d(x,z) ā‰¤ d(x,y)+d(y,z), āˆ€x,y,z āˆˆ X
shudh@JNEC LATEX@ JNEC 16 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Text in a block
The code is here!
begin{block}{Definition of a metric}
The function $d:X times X rightarrow mathbb{R}$ is
known as a metric if it satisfies the following
properties:
begin{itemize}
item {bf Non-negativity:} $d(x,y) geq 0, , forall
x,y in X$
item {bf Identity:} $d(x,y) = 0 iff x=y, , forall
x,y in X$
item {bf Symmetry:} $d(x,y) = d(y,x)$
item {bf Triangle inequality:} $d(x,z) leq d(x,y) +
d(y,z), , forall x,y, zin X$
end{itemize}
end{block}
shudh@JNEC LATEX@ JNEC 17 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables
Outline
1 Layout
2 Multicolumn
3 Block styles
4 Subļ¬‚oats
Figures
Tables
5 Animations
shudh@JNEC LATEX@ JNEC 18 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables
An array of ļ¬gures
Can you typeset this?
(a) Gull (b) Mouse
(c) Owl (d) Duck
Figure 2: Pictures of animals
shudh@JNEC LATEX@ JNEC 19 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables
An array of ļ¬gures
The code is here!
In the preamble:
usepackage{subfig}
And in the body, where you need to typeset / arrange the ļ¬gures,
begin{figure}
centering
subfloat[Gull]{includegraphics[width=0.25textwidth]{gull}
label{fig:gull}}
subfloat[Mouse]{includegraphics[width=0.25textwidth]
{mouse}label{fig:mouse}} 
subfloat[Owl]{includegraphics[width=0.25textwidth]{owl}
label{fig:owl}}
subfloat[Duck]{includegraphics[width=0.25textwidth]{duck}
label{fig:duck_muggled}}
caption{Pictures of animals}label{fig:animals}
end{figure}
shudh@JNEC LATEX@ JNEC 20 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables
My ļ¬gures are not numbered
In the preamble, we should have the following
setbeamertemplate{caption}[numbered]
shudh@JNEC LATEX@ JNEC 21 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables
Multiple tables with subcaptions
Can you typeset this?
Judge 1 Judge 2
Karishma 8 9
Kareena 9 10
Katrina 10 8
(a) Femina Miss India
Judge 1 Judge 2
Akshay 8 9
Akshaye 9 10
Abhay 10 8
(b) Gladrags
Table 1: Table for scores in competitions
The scores of the contestants in the competitions are shown in
Table [1]. For women, the scores are in Table [1a] and for men in
Table [1b].
shudh@JNEC LATEX@ JNEC 22 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables
Multiple tables with subcaptions
The code is here
begin{table}
centering
subfloat[Femina Miss India]{
begin{tabular}{lcc}
hline
{} &Judge 1 &Judge 2  hline
Karishma &8 &9  Kareena &9 &10  Katrina &10 &8 
hline
end{tabular}label{tbl:Women}
}
subfloat[Gladrags]{
begin{tabular}{lcc}
hline
{} &Judge 1 &Judge 2  hline
Akshay &8 &9  Akshaye &9 &10  Abhay &10 &8 
hline
end{tabular}label{tbl:men}
}
caption{Table for scores in
competitions}label{tbl:score}
end{table}
The scores of the contestants in the competitions are
shown in Table [ref{tbl:score}]. For women, the
scores are in Table [ref{tbl:Women}] and for men
in Table [ref{tbl:men}].
shudh@JNEC LATEX@ JNEC 23 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Outline
1 Layout
2 Multicolumn
3 Block styles
4 Subļ¬‚oats
Figures
Tables
5 Animations
shudh@JNEC LATEX@ JNEC 24 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Appearance on click
Pseudo-animation
Judge 1 Judge 2
Karishma 8 9
Kareena 9 10
Katrina 10 8
(a) Femina Miss India
Judge 1 Judge 2
Akshay 8 9
Akshaye 9 10
Abhay 10 8
(b) Gladrags
Table 2: Table for scores in competitions
The scores of the contestants in the competitions are shown in
Table [1]. For women, the scores are in Table [2a] and for men in
Table [2b].
shudh@JNEC LATEX@ JNEC 25 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Appearance on click
Pseudo-animation
Judge 1 Judge 2
Karishma 8 9
Kareena 9 10
Katrina 10 8
(a) Femina Miss India
Judge 1 Judge 2
Akshay 8 9
Akshaye 9 10
Abhay 10 8
(b) Gladrags
Table 2: Table for scores in competitions
The scores of the contestants in the competitions are shown in
Table [1]. For women, the scores are in Table [2a] and for men in
Table [2b].
shudh@JNEC LATEX@ JNEC 25 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Appearance on click
Pseudo-animation
Judge 1 Judge 2
Karishma 8 9
Kareena 9 10
Katrina 10 8
(a) Femina Miss India
Judge 1 Judge 2
Akshay 8 9
Akshaye 9 10
Abhay 10 8
(b) Gladrags
Table 2: Table for scores in competitions
The scores of the contestants in the competitions are shown in
Table [1]. For women, the scores are in Table [2a] and for men in
Table [2b].
shudh@JNEC LATEX@ JNEC 25 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
Appearance on click
Pseudo-animation - typeset it here
begin{table}
centering
subfloat[Femina Miss India]{
begin{tabular}{lcc}
hline
{} &Judge 1 &Judge 2  hline
Karishma &8 &9  Kareena &9 &10  Katrina &10 &8 
hline
end{tabular}label{tbl:Women}
} pause %<< look here
subfloat[Gladrags]{
begin{tabular}{lcc}
hline
{} &Judge 1 &Judge 2  hline
Akshay &8 &9  Akshaye &9 &10  Abhay &10 &8  hline
end{tabular}label{tbl:men}
}
caption{Table for scores in
competitions}label{tbl:score}
end{table}
pause %<< look here
The scores of the contestants in the competitions are
shown in Table [ref{tbl:score}]. For women, the scores
are in Table [ref{tbl:Women}] and for men in
Table [ref{tbl:men}].
shudh@JNEC LATEX@ JNEC 26 / 27
SU
D
D
H
ASH
EEL.CO
M
Layout Multicolumn Block styles Subļ¬‚oats Animations
In the upcoming sessions
Methods of science communication
Writing a paper or a thesis
Examples from literature
shudh@JNEC LATEX@ JNEC 27 / 27

More Related Content

What's hot

Semantic Data Management in Graph Databases
Semantic Data Management in Graph DatabasesSemantic Data Management in Graph Databases
Semantic Data Management in Graph DatabasesMaribel Acosta Deibe
Ā 
2.0 rectangular coordinate system t
2.0 rectangular coordinate system t2.0 rectangular coordinate system t
2.0 rectangular coordinate system tmath260
Ā 
3 2 representing functions
3 2 representing functions3 2 representing functions
3 2 representing functionslothomas
Ā 
The Coordinate Plane (Geometry 2_4)
The Coordinate Plane (Geometry 2_4)The Coordinate Plane (Geometry 2_4)
The Coordinate Plane (Geometry 2_4)rfant
Ā 
2.1 definition of a function
2.1 definition of a function2.1 definition of a function
2.1 definition of a functionhisema01
Ā 
February 16 2016
February 16 2016February 16 2016
February 16 2016khyps13
Ā 

What's hot (10)

Semantic Data Management in Graph Databases
Semantic Data Management in Graph DatabasesSemantic Data Management in Graph Databases
Semantic Data Management in Graph Databases
Ā 
2.0 rectangular coordinate system t
2.0 rectangular coordinate system t2.0 rectangular coordinate system t
2.0 rectangular coordinate system t
Ā 
Graphs
GraphsGraphs
Graphs
Ā 
Determinants
DeterminantsDeterminants
Determinants
Ā 
Determinants
DeterminantsDeterminants
Determinants
Ā 
3 2 representing functions
3 2 representing functions3 2 representing functions
3 2 representing functions
Ā 
The Coordinate Plane (Geometry 2_4)
The Coordinate Plane (Geometry 2_4)The Coordinate Plane (Geometry 2_4)
The Coordinate Plane (Geometry 2_4)
Ā 
2.1 definition of a function
2.1 definition of a function2.1 definition of a function
2.1 definition of a function
Ā 
February 16 2016
February 16 2016February 16 2016
February 16 2016
Ā 
Hw11 v1
Hw11 v1Hw11 v1
Hw11 v1
Ā 

Viewers also liked

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 3Suddhasheel GHOSH, PhD
Ā 
The LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: InvocationThe LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: InvocationSuddhasheel 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
Ā 
How to Create a Slideshare Account
How to Create a Slideshare AccountHow to Create a Slideshare Account
How to Create a Slideshare AccountAna Villarmente
Ā 
Design of FIR filters
Design of FIR filtersDesign of FIR filters
Design of FIR filtersop205
Ā 

Viewers also liked (6)

45324291 a-good-ph d-student
45324291 a-good-ph d-student45324291 a-good-ph d-student
45324291 a-good-ph d-student
Ā 
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
Ā 
The LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: InvocationThe LaTeX Workshop: Document design in LaTeX: Invocation
The LaTeX Workshop: Document design in LaTeX: Invocation
Ā 
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...
Ā 
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 Making presentations with LaTeX: Workshop Day 4

Implementing a many-to-many Relationship with Slick
Implementing a many-to-many Relationship with SlickImplementing a many-to-many Relationship with Slick
Implementing a many-to-many Relationship with SlickHermann Hueck
Ā 
Introduction to programming - class 3
Introduction to programming - class 3Introduction to programming - class 3
Introduction to programming - class 3Paul Brebner
Ā 
C++ STL (quickest way to learn, even for absolute beginners).pptx
C++ STL (quickest way to learn, even for absolute beginners).pptxC++ STL (quickest way to learn, even for absolute beginners).pptx
C++ STL (quickest way to learn, even for absolute beginners).pptxAbhishek Tirkey
Ā 
C++ STL (quickest way to learn, even for absolute beginners).pptx
C++ STL (quickest way to learn, even for absolute beginners).pptxC++ STL (quickest way to learn, even for absolute beginners).pptx
C++ STL (quickest way to learn, even for absolute beginners).pptxGauravPandey43518
Ā 
Comparitive Analysis of Algorithm strategies
Comparitive Analysis of Algorithm strategiesComparitive Analysis of Algorithm strategies
Comparitive Analysis of Algorithm strategiesTalha Shaikh
Ā 
Scala as a Declarative Language
Scala as a Declarative LanguageScala as a Declarative Language
Scala as a Declarative Languagevsssuresh
Ā 
CS 354 Transformation, Clipping, and Culling
CS 354 Transformation, Clipping, and CullingCS 354 Transformation, Clipping, and Culling
CS 354 Transformation, Clipping, and CullingMark Kilgard
Ā 
Cs6660 compiler design november december 2016 Answer key
Cs6660 compiler design november december 2016 Answer keyCs6660 compiler design november december 2016 Answer key
Cs6660 compiler design november december 2016 Answer keyappasami
Ā 
ComputeFest 2012: Intro To R for Physical Sciences
ComputeFest 2012: Intro To R for Physical SciencesComputeFest 2012: Intro To R for Physical Sciences
ComputeFest 2012: Intro To R for Physical Sciencesalexstorer
Ā 
Language Language Models (in 2023) - OpenAI
Language Language Models (in 2023) - OpenAILanguage Language Models (in 2023) - OpenAI
Language Language Models (in 2023) - OpenAISamuelButler15
Ā 
Computer Graphics in Java and Scala - Part 1
Computer Graphics in Java and Scala - Part 1Computer Graphics in Java and Scala - Part 1
Computer Graphics in Java and Scala - Part 1Philip Schwarz
Ā 
Workshop on MATLAB and SIMULINK
Workshop on MATLAB and SIMULINKWorkshop on MATLAB and SIMULINK
Workshop on MATLAB and SIMULINKMd Rakibul Hasan
Ā 
La tex basics
La tex basicsLa tex basics
La tex basicsawverret
Ā 
Background This course is all about data visualization. However, we.docx
Background This course is all about data visualization. However, we.docxBackground This course is all about data visualization. However, we.docx
Background This course is all about data visualization. However, we.docxrosemaryralphs52525
Ā 
Computer Graphics in Java and Scala - Part 1b
Computer Graphics in Java and Scala - Part 1bComputer Graphics in Java and Scala - Part 1b
Computer Graphics in Java and Scala - Part 1bPhilip Schwarz
Ā 
The Web map stack on Django
The Web map stack on DjangoThe Web map stack on Django
The Web map stack on DjangoPaul Smith
Ā 
CS101- Introduction to Computing- Lecture 38
CS101- Introduction to Computing- Lecture 38CS101- Introduction to Computing- Lecture 38
CS101- Introduction to Computing- Lecture 38Bilal Ahmed
Ā 

Similar to Making presentations with LaTeX: Workshop Day 4 (20)

Implementing a many-to-many Relationship with Slick
Implementing a many-to-many Relationship with SlickImplementing a many-to-many Relationship with Slick
Implementing a many-to-many Relationship with Slick
Ā 
Teaching F#
Teaching F#Teaching F#
Teaching F#
Ā 
Introduction to programming - class 3
Introduction to programming - class 3Introduction to programming - class 3
Introduction to programming - class 3
Ā 
C++ STL (quickest way to learn, even for absolute beginners).pptx
C++ STL (quickest way to learn, even for absolute beginners).pptxC++ STL (quickest way to learn, even for absolute beginners).pptx
C++ STL (quickest way to learn, even for absolute beginners).pptx
Ā 
C++ STL (quickest way to learn, even for absolute beginners).pptx
C++ STL (quickest way to learn, even for absolute beginners).pptxC++ STL (quickest way to learn, even for absolute beginners).pptx
C++ STL (quickest way to learn, even for absolute beginners).pptx
Ā 
Comparitive Analysis of Algorithm strategies
Comparitive Analysis of Algorithm strategiesComparitive Analysis of Algorithm strategies
Comparitive Analysis of Algorithm strategies
Ā 
Scala as a Declarative Language
Scala as a Declarative LanguageScala as a Declarative Language
Scala as a Declarative Language
Ā 
Computational Assignment Help
Computational Assignment HelpComputational Assignment Help
Computational Assignment Help
Ā 
CS 354 Transformation, Clipping, and Culling
CS 354 Transformation, Clipping, and CullingCS 354 Transformation, Clipping, and Culling
CS 354 Transformation, Clipping, and Culling
Ā 
Cs6660 compiler design november december 2016 Answer key
Cs6660 compiler design november december 2016 Answer keyCs6660 compiler design november december 2016 Answer key
Cs6660 compiler design november december 2016 Answer key
Ā 
ComputeFest 2012: Intro To R for Physical Sciences
ComputeFest 2012: Intro To R for Physical SciencesComputeFest 2012: Intro To R for Physical Sciences
ComputeFest 2012: Intro To R for Physical Sciences
Ā 
Language Language Models (in 2023) - OpenAI
Language Language Models (in 2023) - OpenAILanguage Language Models (in 2023) - OpenAI
Language Language Models (in 2023) - OpenAI
Ā 
P5js syracuse dev meetup 20181218
P5js syracuse dev meetup 20181218P5js syracuse dev meetup 20181218
P5js syracuse dev meetup 20181218
Ā 
Computer Graphics in Java and Scala - Part 1
Computer Graphics in Java and Scala - Part 1Computer Graphics in Java and Scala - Part 1
Computer Graphics in Java and Scala - Part 1
Ā 
Workshop on MATLAB and SIMULINK
Workshop on MATLAB and SIMULINKWorkshop on MATLAB and SIMULINK
Workshop on MATLAB and SIMULINK
Ā 
La tex basics
La tex basicsLa tex basics
La tex basics
Ā 
Background This course is all about data visualization. However, we.docx
Background This course is all about data visualization. However, we.docxBackground This course is all about data visualization. However, we.docx
Background This course is all about data visualization. However, we.docx
Ā 
Computer Graphics in Java and Scala - Part 1b
Computer Graphics in Java and Scala - Part 1bComputer Graphics in Java and Scala - Part 1b
Computer Graphics in Java and Scala - Part 1b
Ā 
The Web map stack on Django
The Web map stack on DjangoThe Web map stack on Django
The Web map stack on Django
Ā 
CS101- Introduction to Computing- Lecture 38
CS101- Introduction to Computing- Lecture 38CS101- Introduction to Computing- Lecture 38
CS101- Introduction to Computing- Lecture 38
Ā 

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 MethodSuddhasheel 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 MethodSuddhasheel GHOSH, PhD
Ā 
Research Prospects with Geoinformatics
Research Prospects with GeoinformaticsResearch Prospects with Geoinformatics
Research Prospects with GeoinformaticsSuddhasheel 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

18-04-UA_REPORT_MEDIALITERAŠ”Y_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAŠ”Y_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAŠ”Y_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAŠ”Y_INDEX-DM_23-1-final-eng.pdfssuser54595a
Ā 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
Ā 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
Ā 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
Ā 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
Ā 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
Ā 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
Ā 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
Ā 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
Ā 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
Ā 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptxPoojaSen20
Ā 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
Ā 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
Ā 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
Ā 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersChitralekhaTherkar
Ā 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
Ā 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
Ā 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
Ā 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
Ā 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
Ā 

Recently uploaded (20)

18-04-UA_REPORT_MEDIALITERAŠ”Y_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAŠ”Y_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAŠ”Y_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAŠ”Y_INDEX-DM_23-1-final-eng.pdf
Ā 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
Ā 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
Ā 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
Ā 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Ā 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
Ā 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
Ā 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
Ā 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
Ā 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
Ā 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptx
Ā 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
Ā 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
Ā 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
Ā 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of Powders
Ā 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
Ā 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
Ā 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
Ā 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
Ā 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
Ā 

Making presentations with LaTeX: Workshop Day 4

  • 1. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Making presentations with LATEX Using the beamer package Suddhasheel Ghosh Department of Civil Engineering, Jawaharlal Nehru Engineering College Aurangabad, Maharashtra 431003 LATEX for Technical and Scientiļ¬c Documents January 12 - 16, 2015 Day IV shudh@JNEC LATEX@ JNEC 1 / 27
  • 2. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Outline 1 Layout 2 Multicolumn 3 Block styles 4 Subļ¬‚oats Figures Tables 5 Animations shudh@JNEC LATEX@ JNEC 2 / 27
  • 3. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations In this workshop: Day 1: Introduction to LATEX Day 2: Typesetting Mathematics Day 3: Writing your thesis / technical report Day 4: Make your presentations Day 5: Basics of science communication shudh@JNEC LATEX@ JNEC 3 / 27
  • 4. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Outline 1 Layout 2 Multicolumn 3 Block styles 4 Subļ¬‚oats Figures Tables 5 Animations shudh@JNEC LATEX@ JNEC 4 / 27
  • 5. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Calling the class ļ¬le Document setup For making presentations, we use the beamer class. Our basic .tex ļ¬le documentclass{beamer} title{My first presentation} author{Suddhasheel Ghosh} institute{JNEC} begin{document} begin{frame} titlepage end{frame} end{document} It can be seen that the ā€œslidesā€ are called as ā€œframesā€ here. shudh@JNEC LATEX@ JNEC 5 / 27
  • 6. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Set the themes Broadly, there are the following kinds of themes in beamer Layout theme Font theme Color theme %in the preamble %set the layout theme usetheme{Warsaw} %set the colour theme usecolortheme{crane} %set the font theme usefonttheme{serif} %by default it is sans-serif shudh@JNEC LATEX@ JNEC 6 / 27
  • 7. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Set the logo ...to appear in the corner of every page Do you have a logo to display? If the name of the image ļ¬le is mylogo.png, place the logo at the corner of every page by using the following pgfdeclareimage[height=0.5cm]{college-logo}{logo.png} logo{pgfuseimage{college-logo}} shudh@JNEC LATEX@ JNEC 7 / 27
  • 8. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Page number setting Many themes do not have slide-number display capability. To insert slide numbers use: newcommand*oldmacro{}% letoldmacroinsertshorttitle% renewcommand*insertshorttitle{% oldmacrohfill% insertframenumber,/,inserttotalframenumber} shudh@JNEC LATEX@ JNEC 8 / 27
  • 9. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations A slide with the table of contents For having a slide with the table of contents, we use begin{frame}{Contents} tableofcontents end{frame} shudh@JNEC LATEX@ JNEC 9 / 27
  • 10. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations What we have achieved till now Slide layouts We created a LATEX ļ¬le We have called the beamer class We have deļ¬ned the theme, font theme, and the colour theme. We have inserted the logo We have inserted numbers at the bottom of the slides We have created the ļ¬rst slide, the title slide We have created the slide with the table of contents shudh@JNEC LATEX@ JNEC 10 / 27
  • 11. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations How did we typeset the last one? The code is here %start the coding for the frame - with the title %and the subtitle begin{frame}{What we have achieved till now}{Slide layouts} begin{itemize} item We created a LaTeX{} file item We have called the {tt beamer} class item We have defined the theme, font theme, and the colour theme. item We have inserted the logo item We have inserted numbers at the bottom of the slides item We have created the first slide, the title slide item We have created the slide with the table of contents end{itemize} %end the coding of the frame here end{frame} shudh@JNEC LATEX@ JNEC 11 / 27
  • 12. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Outline 1 Layout 2 Multicolumn 3 Block styles 4 Subļ¬‚oats Figures Tables 5 Animations shudh@JNEC LATEX@ JNEC 12 / 27
  • 13. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations A two column slide Can you design this? Figure 1: A muggle artefact found in the Dark Lordā€™s bathroom The investigator looked puzzled when he visited the house of the Dark Lord. He found a rubber duck (Figure [1]) in the bathroom, along with other suspicious objects. shudh@JNEC LATEX@ JNEC 13 / 27
  • 14. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Designing the two column slide The code is here! begin{frame}{A two column slide}{Can you design this?} begin{columns} begin{column}{0.5textwidth} %column width begin{figure} centering includegraphics[scale=0.2]{duck.jpg} caption{A muggle artefact found in the Dark Lord's bathroom}label{fig:muggleduck} end{figure} end{column} begin{column}{0.5textwidth} The investigator looked puzzled when he visited the house of the Dark Lord. He found a rubber duck (Figure [ref{fig:muggleduck}]) in the bathroom, along with other suspicious objects. end{column} end{columns} end{frame} shudh@JNEC LATEX@ JNEC 14 / 27
  • 15. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Outline 1 Layout 2 Multicolumn 3 Block styles 4 Subļ¬‚oats Figures Tables 5 Animations shudh@JNEC LATEX@ JNEC 15 / 27
  • 16. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Text inside a block Can you design this? Deļ¬nition of a metric The function d : X ƗX ā†’ R is known as a metric if it satisļ¬es the following properties: Non-negativity: d(x,y) ā‰„ 0, āˆ€x,y āˆˆ X Identity: d(x,y) = 0 ā‡ā‡’ x = y, āˆ€x,y āˆˆ X Symmetry: d(x,y) = d(y,x) Triangle inequality: d(x,z) ā‰¤ d(x,y)+d(y,z), āˆ€x,y,z āˆˆ X shudh@JNEC LATEX@ JNEC 16 / 27
  • 17. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Text in a block The code is here! begin{block}{Definition of a metric} The function $d:X times X rightarrow mathbb{R}$ is known as a metric if it satisfies the following properties: begin{itemize} item {bf Non-negativity:} $d(x,y) geq 0, , forall x,y in X$ item {bf Identity:} $d(x,y) = 0 iff x=y, , forall x,y in X$ item {bf Symmetry:} $d(x,y) = d(y,x)$ item {bf Triangle inequality:} $d(x,z) leq d(x,y) + d(y,z), , forall x,y, zin X$ end{itemize} end{block} shudh@JNEC LATEX@ JNEC 17 / 27
  • 18. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables Outline 1 Layout 2 Multicolumn 3 Block styles 4 Subļ¬‚oats Figures Tables 5 Animations shudh@JNEC LATEX@ JNEC 18 / 27
  • 19. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables An array of ļ¬gures Can you typeset this? (a) Gull (b) Mouse (c) Owl (d) Duck Figure 2: Pictures of animals shudh@JNEC LATEX@ JNEC 19 / 27
  • 20. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables An array of ļ¬gures The code is here! In the preamble: usepackage{subfig} And in the body, where you need to typeset / arrange the ļ¬gures, begin{figure} centering subfloat[Gull]{includegraphics[width=0.25textwidth]{gull} label{fig:gull}} subfloat[Mouse]{includegraphics[width=0.25textwidth] {mouse}label{fig:mouse}} subfloat[Owl]{includegraphics[width=0.25textwidth]{owl} label{fig:owl}} subfloat[Duck]{includegraphics[width=0.25textwidth]{duck} label{fig:duck_muggled}} caption{Pictures of animals}label{fig:animals} end{figure} shudh@JNEC LATEX@ JNEC 20 / 27
  • 21. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables My ļ¬gures are not numbered In the preamble, we should have the following setbeamertemplate{caption}[numbered] shudh@JNEC LATEX@ JNEC 21 / 27
  • 22. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables Multiple tables with subcaptions Can you typeset this? Judge 1 Judge 2 Karishma 8 9 Kareena 9 10 Katrina 10 8 (a) Femina Miss India Judge 1 Judge 2 Akshay 8 9 Akshaye 9 10 Abhay 10 8 (b) Gladrags Table 1: Table for scores in competitions The scores of the contestants in the competitions are shown in Table [1]. For women, the scores are in Table [1a] and for men in Table [1b]. shudh@JNEC LATEX@ JNEC 22 / 27
  • 23. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Figures Tables Multiple tables with subcaptions The code is here begin{table} centering subfloat[Femina Miss India]{ begin{tabular}{lcc} hline {} &Judge 1 &Judge 2 hline Karishma &8 &9 Kareena &9 &10 Katrina &10 &8 hline end{tabular}label{tbl:Women} } subfloat[Gladrags]{ begin{tabular}{lcc} hline {} &Judge 1 &Judge 2 hline Akshay &8 &9 Akshaye &9 &10 Abhay &10 &8 hline end{tabular}label{tbl:men} } caption{Table for scores in competitions}label{tbl:score} end{table} The scores of the contestants in the competitions are shown in Table [ref{tbl:score}]. For women, the scores are in Table [ref{tbl:Women}] and for men in Table [ref{tbl:men}]. shudh@JNEC LATEX@ JNEC 23 / 27
  • 24. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Outline 1 Layout 2 Multicolumn 3 Block styles 4 Subļ¬‚oats Figures Tables 5 Animations shudh@JNEC LATEX@ JNEC 24 / 27
  • 25. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Appearance on click Pseudo-animation Judge 1 Judge 2 Karishma 8 9 Kareena 9 10 Katrina 10 8 (a) Femina Miss India Judge 1 Judge 2 Akshay 8 9 Akshaye 9 10 Abhay 10 8 (b) Gladrags Table 2: Table for scores in competitions The scores of the contestants in the competitions are shown in Table [1]. For women, the scores are in Table [2a] and for men in Table [2b]. shudh@JNEC LATEX@ JNEC 25 / 27
  • 26. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Appearance on click Pseudo-animation Judge 1 Judge 2 Karishma 8 9 Kareena 9 10 Katrina 10 8 (a) Femina Miss India Judge 1 Judge 2 Akshay 8 9 Akshaye 9 10 Abhay 10 8 (b) Gladrags Table 2: Table for scores in competitions The scores of the contestants in the competitions are shown in Table [1]. For women, the scores are in Table [2a] and for men in Table [2b]. shudh@JNEC LATEX@ JNEC 25 / 27
  • 27. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Appearance on click Pseudo-animation Judge 1 Judge 2 Karishma 8 9 Kareena 9 10 Katrina 10 8 (a) Femina Miss India Judge 1 Judge 2 Akshay 8 9 Akshaye 9 10 Abhay 10 8 (b) Gladrags Table 2: Table for scores in competitions The scores of the contestants in the competitions are shown in Table [1]. For women, the scores are in Table [2a] and for men in Table [2b]. shudh@JNEC LATEX@ JNEC 25 / 27
  • 28. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations Appearance on click Pseudo-animation - typeset it here begin{table} centering subfloat[Femina Miss India]{ begin{tabular}{lcc} hline {} &Judge 1 &Judge 2 hline Karishma &8 &9 Kareena &9 &10 Katrina &10 &8 hline end{tabular}label{tbl:Women} } pause %<< look here subfloat[Gladrags]{ begin{tabular}{lcc} hline {} &Judge 1 &Judge 2 hline Akshay &8 &9 Akshaye &9 &10 Abhay &10 &8 hline end{tabular}label{tbl:men} } caption{Table for scores in competitions}label{tbl:score} end{table} pause %<< look here The scores of the contestants in the competitions are shown in Table [ref{tbl:score}]. For women, the scores are in Table [ref{tbl:Women}] and for men in Table [ref{tbl:men}]. shudh@JNEC LATEX@ JNEC 26 / 27
  • 29. SU D D H ASH EEL.CO M Layout Multicolumn Block styles Subļ¬‚oats Animations In the upcoming sessions Methods of science communication Writing a paper or a thesis Examples from literature shudh@JNEC LATEX@ JNEC 27 / 27