SlideShare une entreprise Scribd logo
1  sur  40
Télécharger pour lire hors ligne
A
                               LTEX
         Prepare presentation and report


                      Jaspreet Kaur
                 jaspritsarao@gmail.com

             Dept. of Computer Science


                        June 28, 2012




Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
A
What is LTEX ?
 A
LTEX is a document markup language and document
preparation system. Within the typesetting system, its name
             A
is styled as LTEX.




        Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
A
History of LTEX




    TEX was dicovered by Donald Knuth.
    Professor of “The Art of Computer
    Programming” at Stanford University.
    He is a father of algorithm analysis.




          Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Installation
                A
Installation of LTEX is quite easy.
Go to terminal and type
    $ sudo apt-get install texlive-full




         Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Simple document




         Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Simple document




         Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Simple document




         Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Title page




             Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Title page




             Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Title page




             Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Table of contents



  Use: tableofcontents




          Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
List of figures




  Use: listoffigures




          Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Include images


  To include image do following steps:
      Include
  usepackage{graphicx} in preamble

      Include following code in body

  begin{figure}[placement specifier]
  includegraphics[scale=o.1]{figure.png}
  caption{Example}
  end{figure}




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Specifier




               Specifier           Description
               h                  Place the float here
               t                  At top of the page
               b                  At the bottom of the page




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Insert code



  usepackage{verbatim} in preamble

  Following code in body:

  begin{verbatim}
  write code here ...

  end{verbatim

  }




          Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Ordered lists


  Numbered list:
  begin{enumerate}
  item The labels consists of sequential numbers.
  item The numbers starts at 1 with every call to the
  enumerate environment.
  end{enumerate}

  Output:
    1   The labels consists of sequential numbers.
    2   The numbers starts at 1 with every call to the
        enumerate environment.




            Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Ordered lists


  Bulleted list:
  begin{itemize}
  item The individual entries are indicated with a
  black dot, a so-called bullet.
  item The text in the entries may be of any length.
  end{itemize}

  Output:
      The individual entries are indicated with a black dot, a
      so-called bullet.
      The text in the entries may be of any length.




            Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Ordered lists


  Nested list:
  begin{itemize}
  item First level item
  begin{enumerate}
  item Second level item
  item Third level item
  end{enumerate}
  end{itemize}

  Output:
     First level item
        1   Second level item
        2   Third level item



            Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Table



  begin{tabular}{|l|c|r|}
  hline multicolumn{3}{|c|}{Sample Tabular} 
  hline Left & centered & right 
  hline Left items & centered & right aligned 
  hline
  end{tabular}
                       Sample Tabular
  Output:    Left        centered         right
             Left items centered right aligned




            Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Table
  If you want table with caption and label and specify the
  placing of table then use:
  begin{table}[h]
  begin{tabular}{|l|c|r|}
  hline multicolumn{3}{|c|}{Sample Tabular} 
  hline Left items & centered & right aligned 
  hline
  end{tabular}
  caption{example}
  end{table}
  Output:
                                  Sample Tabular
                 Left items         centered right aligned
                                     Table: example

            Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Specifier




                    Specifier           Description
                    l                  left justified columne
                    c                  centered column
                    |                  vertical line
                    ||                 double vertical line
                    &                  column seperator




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Headings



  section*{LaTeX{}}
  section{LaTeX{}}
  subsection{Features}
  subsubsection{Report}
  subsubsection{Presentation}
  subsection{Advantages}
  paragraph{My name is jaspreet kaur doing B-tech in
  computer science and engineering from GNDEC ludhiana.}
  subparagraph{My name is jaspreet kaur doing B-tech in
  computer science and engineering from GNDEC ludhiana.}




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Headings:Output




         Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Introduction
             A
Beamer is a LTEX class for creating presentations.Preparing
presentations with beamer is different from preparing them
with wysiwyg programs like OpenOffice’s Impress, A beamer
                                        A
presentation is created like any other LTEX document: It has
a preamble and a body, the body contains sections and
subsections, the different slides (called frames in beamer).




         Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Features



                A
      Basics of LTEX works with Beamer
      You can easily create overlays and dynamic effects.
      You can change the appearance of your presentation to
      suit you purposes.
      The final output is typically a pdf-file which is platform
      independent.
      Professional look of presentation
      You can create presentation using same source you
                A
      wrote for LTEX articles.




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Features



                A
      Basics of LTEX works with Beamer
      You can easily create overlays and dynamic effects.
      You can change the appearance of your presentation to
      suit you purposes.
      The final output is typically a pdf-file which is platform
      independent.
      Professional look of presentation
      You can create presentation using same source you
                A
      wrote for LTEX articles.




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Features



                A
      Basics of LTEX works with Beamer
      You can easily create overlays and dynamic effects.
      You can change the appearance of your presentation to
      suit you purposes.
      The final output is typically a pdf-file which is platform
      independent.
      Professional look of presentation
      You can create presentation using same source you
                A
      wrote for LTEX articles.




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Features



                A
      Basics of LTEX works with Beamer
      You can easily create overlays and dynamic effects.
      You can change the appearance of your presentation to
      suit you purposes.
      The final output is typically a pdf-file which is platform
      independent.
      Professional look of presentation
      You can create presentation using same source you
                A
      wrote for LTEX articles.




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Features



                A
      Basics of LTEX works with Beamer
      You can easily create overlays and dynamic effects.
      You can change the appearance of your presentation to
      suit you purposes.
      The final output is typically a pdf-file which is platform
      independent.
      Professional look of presentation
      You can create presentation using same source you
                A
      wrote for LTEX articles.




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Features



                A
      Basics of LTEX works with Beamer
      You can easily create overlays and dynamic effects.
      You can change the appearance of your presentation to
      suit you purposes.
      The final output is typically a pdf-file which is platform
      independent.
      Professional look of presentation
      You can create presentation using same source you
                A
      wrote for LTEX articles.




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Basic Structure


  documentclass{beamer}   % class
  usetheme{Warsaw}    % style
  usecolortheme{whale}   % color
  usepackage{graphicx}
  title{Beamer}
  subtitle{presentation}
  author{Jaspreet}
  begin{document}
  frame{titlepage}

  end{document}




          Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Output




         Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Output




         Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Basic Structure




          Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Frames




  A basic frame




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Frames




         Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Code in beamer




  usepackage{verbatim}
  ...
  begin{frame}[fragile}




          Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Blocks




  begin{block}{Introduction to {LaTeX}}
  ‘‘Beamer is a {LaTeX}class for creating presentations
  that are held using a projector...’’
  end{block}

                  A
  Introduction to LTEX
                A
  “Beamer is a LTEXclass for creating presentations that are
  held using a projector...”




           Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Any Question?




Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com
Thank You




Guru Nanak Dev Engineering College   jaspreetsarao.wordpress.com

Contenu connexe

Similaire à Basics of LaTeX

Linq 1224887336792847 9
Linq 1224887336792847 9Linq 1224887336792847 9
Linq 1224887336792847 9
google
 
Rg apexand visualforcearchitecture
Rg apexand visualforcearchitectureRg apexand visualforcearchitecture
Rg apexand visualforcearchitecture
CMR WORLD TECH
 
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan
 

Similaire à Basics of LaTeX (20)

LATEX.ppt
LATEX.pptLATEX.ppt
LATEX.ppt
 
latex.pptx
latex.pptxlatex.pptx
latex.pptx
 
Manuscript Preparation using Latex: A Cloud Based Approach(Overleaf)
Manuscript Preparation using Latex: A Cloud Based Approach(Overleaf)Manuscript Preparation using Latex: A Cloud Based Approach(Overleaf)
Manuscript Preparation using Latex: A Cloud Based Approach(Overleaf)
 
Learn Latex
Learn LatexLearn Latex
Learn Latex
 
Latex ppt copy
Latex ppt   copyLatex ppt   copy
Latex ppt copy
 
Latex for beginners
Latex for beginnersLatex for beginners
Latex for beginners
 
Technical writing using LaTeX
Technical writing using LaTeXTechnical writing using LaTeX
Technical writing using 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
 
C++ book
C++ bookC++ book
C++ book
 
Linq 1224887336792847 9
Linq 1224887336792847 9Linq 1224887336792847 9
Linq 1224887336792847 9
 
Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latex
 
Manit bhopal group_1_latex_assignment_part_2-1
Manit bhopal group_1_latex_assignment_part_2-1Manit bhopal group_1_latex_assignment_part_2-1
Manit bhopal group_1_latex_assignment_part_2-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
 
Latex Tuitorial
Latex TuitorialLatex Tuitorial
Latex Tuitorial
 
Apexand visualforcearchitecture
Apexand visualforcearchitectureApexand visualforcearchitecture
Apexand visualforcearchitecture
 
Rg apexand visualforcearchitecture
Rg apexand visualforcearchitectureRg apexand visualforcearchitecture
Rg apexand visualforcearchitecture
 
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2
 
4 jdbc step1
4 jdbc step14 jdbc step1
4 jdbc step1
 
Lessons learned teaching a groovy grails course
Lessons learned teaching a groovy grails courseLessons learned teaching a groovy grails course
Lessons learned teaching a groovy grails course
 
Aspect-oriented programming in Perl
Aspect-oriented programming in PerlAspect-oriented programming in Perl
Aspect-oriented programming in Perl
 

Dernier

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 

Dernier (20)

Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 

Basics of LaTeX

  • 1. A LTEX Prepare presentation and report Jaspreet Kaur jaspritsarao@gmail.com Dept. of Computer Science June 28, 2012 Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 2. A What is LTEX ? A LTEX is a document markup language and document preparation system. Within the typesetting system, its name A is styled as LTEX. Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 3. A History of LTEX TEX was dicovered by Donald Knuth. Professor of “The Art of Computer Programming” at Stanford University. He is a father of algorithm analysis. Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 4. Installation A Installation of LTEX is quite easy. Go to terminal and type $ sudo apt-get install texlive-full Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 5. Simple document Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 6. Simple document Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 7. Simple document Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 8. Title page Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 9. Title page Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 10. Title page Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 11. Table of contents Use: tableofcontents Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 12. List of figures Use: listoffigures Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 13. Include images To include image do following steps: Include usepackage{graphicx} in preamble Include following code in body begin{figure}[placement specifier] includegraphics[scale=o.1]{figure.png} caption{Example} end{figure} Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 14. Specifier Specifier Description h Place the float here t At top of the page b At the bottom of the page Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 15. Insert code usepackage{verbatim} in preamble Following code in body: begin{verbatim} write code here ... end{verbatim } Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 16. Ordered lists Numbered list: begin{enumerate} item The labels consists of sequential numbers. item The numbers starts at 1 with every call to the enumerate environment. end{enumerate} Output: 1 The labels consists of sequential numbers. 2 The numbers starts at 1 with every call to the enumerate environment. Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 17. Ordered lists Bulleted list: begin{itemize} item The individual entries are indicated with a black dot, a so-called bullet. item The text in the entries may be of any length. end{itemize} Output: The individual entries are indicated with a black dot, a so-called bullet. The text in the entries may be of any length. Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 18. Ordered lists Nested list: begin{itemize} item First level item begin{enumerate} item Second level item item Third level item end{enumerate} end{itemize} Output: First level item 1 Second level item 2 Third level item Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 19. Table begin{tabular}{|l|c|r|} hline multicolumn{3}{|c|}{Sample Tabular} hline Left & centered & right hline Left items & centered & right aligned hline end{tabular} Sample Tabular Output: Left centered right Left items centered right aligned Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 20. Table If you want table with caption and label and specify the placing of table then use: begin{table}[h] begin{tabular}{|l|c|r|} hline multicolumn{3}{|c|}{Sample Tabular} hline Left items & centered & right aligned hline end{tabular} caption{example} end{table} Output: Sample Tabular Left items centered right aligned Table: example Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 21. Specifier Specifier Description l left justified columne c centered column | vertical line || double vertical line & column seperator Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 22. Headings section*{LaTeX{}} section{LaTeX{}} subsection{Features} subsubsection{Report} subsubsection{Presentation} subsection{Advantages} paragraph{My name is jaspreet kaur doing B-tech in computer science and engineering from GNDEC ludhiana.} subparagraph{My name is jaspreet kaur doing B-tech in computer science and engineering from GNDEC ludhiana.} Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 23. Headings:Output Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 24. Introduction A Beamer is a LTEX class for creating presentations.Preparing presentations with beamer is different from preparing them with wysiwyg programs like OpenOffice’s Impress, A beamer A presentation is created like any other LTEX document: It has a preamble and a body, the body contains sections and subsections, the different slides (called frames in beamer). Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 25. Features A Basics of LTEX works with Beamer You can easily create overlays and dynamic effects. You can change the appearance of your presentation to suit you purposes. The final output is typically a pdf-file which is platform independent. Professional look of presentation You can create presentation using same source you A wrote for LTEX articles. Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 26. Features A Basics of LTEX works with Beamer You can easily create overlays and dynamic effects. You can change the appearance of your presentation to suit you purposes. The final output is typically a pdf-file which is platform independent. Professional look of presentation You can create presentation using same source you A wrote for LTEX articles. Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 27. Features A Basics of LTEX works with Beamer You can easily create overlays and dynamic effects. You can change the appearance of your presentation to suit you purposes. The final output is typically a pdf-file which is platform independent. Professional look of presentation You can create presentation using same source you A wrote for LTEX articles. Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 28. Features A Basics of LTEX works with Beamer You can easily create overlays and dynamic effects. You can change the appearance of your presentation to suit you purposes. The final output is typically a pdf-file which is platform independent. Professional look of presentation You can create presentation using same source you A wrote for LTEX articles. Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 29. Features A Basics of LTEX works with Beamer You can easily create overlays and dynamic effects. You can change the appearance of your presentation to suit you purposes. The final output is typically a pdf-file which is platform independent. Professional look of presentation You can create presentation using same source you A wrote for LTEX articles. Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 30. Features A Basics of LTEX works with Beamer You can easily create overlays and dynamic effects. You can change the appearance of your presentation to suit you purposes. The final output is typically a pdf-file which is platform independent. Professional look of presentation You can create presentation using same source you A wrote for LTEX articles. Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 31. Basic Structure documentclass{beamer} % class usetheme{Warsaw} % style usecolortheme{whale} % color usepackage{graphicx} title{Beamer} subtitle{presentation} author{Jaspreet} begin{document} frame{titlepage} end{document} Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 32. Output Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 33. Output Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 34. Basic Structure Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 35. Frames A basic frame Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 36. Frames Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 37. Code in beamer usepackage{verbatim} ... begin{frame}[fragile} Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 38. Blocks begin{block}{Introduction to {LaTeX}} ‘‘Beamer is a {LaTeX}class for creating presentations that are held using a projector...’’ end{block} A Introduction to LTEX A “Beamer is a LTEXclass for creating presentations that are held using a projector...” Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 39. Any Question? Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com
  • 40. Thank You Guru Nanak Dev Engineering College jaspreetsarao.wordpress.com