Upgrade to Pro — share decks privately, control downloads, hide ads and more …

LaTeX for Scientific Writing Part-2

sambaiga
August 17, 2017
34

LaTeX for Scientific Writing Part-2

sambaiga

August 17, 2017
Tweet

Transcript

  1. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré LaTex for Scientific Writing: Part -2 Anthony FAUSTINE. PhD machine learning resercher, IDLab, imec Ghent University 2017 sambaiga Latex 2017 1 / 65
  2. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Outline 1 Graphics, Figures and Tables 2 Bibliography 3 Proposal, Thesis and Joural paper with Latex 4 Presentation Slides : LaTeX Beamer sambaiga Latex 2017 2 / 65
  3. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Creating Tables Use the tabular environment \begin{tabular}[position]{column alignments} ... \end{tabular} postion is optional (vertical position) : [t] (top), [c] (center, this is default), [b] (bottom); column alignments : l (left-justified), c (center justified), and r (right-justified); sambaiga Latex 2017 3 / 65
  4. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Creating Tables The column data is separated by &,row end is marked as \\ and \hline draw a horizontal line. Consider the following simple table : Parameter Value Path loss (n) 2.5 Model Okumura-model Cell-radius 1km sambaiga Latex 2017 4 / 65
  5. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Creating Tables Latex code for previous simple table \centering \begin{tabular}[t]{|l|l|} \hline \textbf{Parameter} & \textbf{Value}\\ \hline Path loss (n) & 2.5\\ Model & Okumura-model\\ Cell-radius & $1km$\\ \hline \end{tabular} sambaiga Latex 2017 5 / 65
  6. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Creating Tables The booktabs package improve the quality LaTeX tables. • The horizontal rules are called with \toprule, \midrule and \bottomrule instead of \hline command. • The \cmidrule is used for mid-rules that span specified columns. • The content of the tables is filled in the same manner as before. • To use this package first you need to add this code in preamble. \usepackage{booktabs} sambaiga Latex 2017 6 / 65
  7. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Creating Tables Example : Parameter Value Path loss (n) 2.5 Model Okumura-model Cell-radius 1km sambaiga Latex 2017 7 / 65
  8. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Creating Tables code : \centering \begin{tabular}[t]{ll} \toprule \textbf{Parameter} & \textbf{Value}\\ \midrule Path loss (n) & 2.5\\ Model & Okumura-model\\ Cell-radius & $1km$\\ \bottomrule \end{tabular} sambaiga Latex 2017 8 / 65
  9. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Creating Tables To draw multicolumn table like this one : Name First name Last Name Grade John Doe 7.5 Richard Miles 2 sambaiga Latex 2017 9 / 65
  10. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Creating Tables Use the following command : \multicolumn{n}{alignment}{item} n : is the number of columns to be spanned. alignemnt : is one of the l, r and c. item : is the content. Example : \multicolumn{2}{c}{Name} sambaiga Latex 2017 10 / 65
  11. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Creating Tables \begin{tabular}{llr} \toprule \multicolumn{2}{c}{Name} \\ \cmidrule(r){1-2} First name & Last Name & Grade \\ \midrule John & Doe & $7.5$ \\ Richard & Miles & $2$ \\ \bottomrule \end{tabular} sambaiga Latex 2017 11 / 65
  12. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Floating Tables Latex provides the table environments for typesetting floating tables. • A table environment is set up as follows : \begin{table} \caption{title} \label{tab:xxx} %Place the table here \end{table} sambaiga Latex 2017 12 / 65
  13. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Floating Tables \caption command is optional and used to set table tittle. \label command is also optional and is used to reference the table’s number. Example : To produce the following table TABLE – Simulation Parameters Parameter Value Path loss (n) 2.5 Model Okumura-model Cell-radius 1km sambaiga Latex 2017 13 / 65
  14. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Tables Floating Tables \begin{table} \caption{Simulation Parameters} \label{tab:model_parameter} \begin{tabular}[t]{ll} \toprule \textbf{Parameter} & \textbf{Value}\\ \midrule Path loss (n) & 2.5\\ Model & Okumura-model\\ Cell-radius & $1km$\\ \bottomrule \end{tabular} \end{table} Guide to Making nice Table : click here sambaiga Latex 2017 14 / 65
  15. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Activity Activity 1 sambaiga Latex 2017 15 / 65
  16. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Graphics Include Graphics The easiest way to include images in your document is to use the graphicx package. Load the package graphicx : \usepackage{graphicx} • The image format available depend on what you’re using to compile. • If you’re compiling using pdflatex (recommended), then you can use jpg, png, pdf, or eps files. • Place the file in the same directory as your tex file, and use the \includegraphics[key-values]{imagefile} command. sambaiga Latex 2017 16 / 65
  17. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Graphics Include Graphics Example : \includegraphics[scale=0.2]{images/bulb} sambaiga Latex 2017 17 / 65
  18. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Graphics Include Graphics The image can be scaled to a specified height and/or width as follows : \includegraphics[height=2in,width=1in]{images/bulb} sambaiga Latex 2017 18 / 65
  19. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Graphics Floating images Use figure environment : \begin{figure} \includegraphics{file} \caption{title } \label{fig:xxx} \end{figure} sambaiga Latex 2017 19 / 65
  20. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Graphics Floating images FIGURE – Green Bulb To print the list of figures and tables use \listoffigures and \listoftables respectively. sambaiga Latex 2017 20 / 65
  21. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Activity Activity 2 sambaiga Latex 2017 21 / 65
  22. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Notes with todonotes The \todo command from the todonotes package is great for leaving notes to yourself and your collaborators. Include this package in preamble : \usepackage[colorinlistoftodos]{todonotes} Example : \todo{Plain todonotes.} Footnotes :The command you need is \footnotes{An example footnote} 1 1. An example footnote sambaiga Latex 2017 22 / 65
  23. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Notes with todonotes • Only inline notes are supported with beamer, but margin notes are supported for normal documents. • There is also a handy \listoftodos command. • To use this load : \usepackage[colorlinks]{hyperref} before \usepackage[colorinlistoftodos]{todonotes} sambaiga Latex 2017 23 / 65
  24. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Activity Activity 3 sambaiga Latex 2017 24 / 65
  25. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Outline 1 Graphics, Figures and Tables 2 Bibliography 3 Proposal, Thesis and Joural paper with Latex 4 Presentation Slides : LaTeX Beamer sambaiga Latex 2017 25 / 65
  26. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography To manage and include references in a LATEX document use BIBTEX. BibTex : a bibliographic tool that is used with LaTeX to help organize the user’s references and create a bibliography. • A BibTeX user creates a bibliography file with .bib extension. • The .bib file is called a BibTEX database. • Each entry in the .bib file is formatted with a certain structure and is given a "key" by which the author can refer to it in the source file. sambaiga Latex 2017 26 / 65
  27. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography The BibTEX Format The generic form of a BibTEX entry is @type{key, field1 = “ ” or {} or none, field2 = “ ” or {} or none, ... fieldn = “ ” or {} or none } sambaiga Latex 2017 27 / 65
  28. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography The BibTEX Format The generic form of a BibTEX entry is @INPROCEEDINGS{Pantic2006, author={M. Pantic and R. Zwitserloot}, booktitle={Proceedings. Frontiers in Education. 36th Annual Conference}, title={Active Learning of Introductory Machine Learning}, year={2006}, pages={1-6}, doi={10.1109/FIE.2006.322738}, ISSN={0190-5848}, month={Oct},} sambaiga Latex 2017 28 / 65
  29. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography The BibTEX Format Example : @article{Gettys90, author = {Jim Gettys and Phil Karlton and Scott McGregor}, title = {The {X} Window System, Version 11}, journal = {Software Practice and Experience}, volume = {20}, number = {S2}, year = {1990}, abstract = {A technical overview of the X11 functionality. of the X10 TOG paper by Scheifler \& Gettys.} } sambaiga Latex 2017 29 / 65
  30. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography Export .bib file from Mendeley To export BiBTex : 1 Open Mendeley, and within "My Library" found on the left, select references that you would like to texport to BibTeX. 2 In the drop-down menu in the toolbar at the top of the screen, click "File → Export. 3 In the dropdown list of filetypes chose "BibTeX (*.bib)" and save to the same location as the LaTeX file. More on Mendeley and LaTeX :here. sambaiga Latex 2017 30 / 65
  31. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography Auto-syncing from Mendeley to BibTeX Mendeley has the built-in capability to auto sync a BibTeX file when changes have been made to your Mendeley library. To set up the Mendeley auto sync : 1 Go to Mendeley Desktop preferences. 2 Select the BibTeX tab. 3 Select the box labeled “Enable BibTeX syncing” and select the BiBTeX file option you prefer. 4 Select the location where you want the generated .bib file(s) to be stored (this should be the same location as your LaTeX file(s)). sambaiga Latex 2017 31 / 65
  32. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography Auto-syncing from Mendeley to BibTeX Mendeley has the built-in capability to auto sync a BibTeX file when changes have been made to your Mendeley library. To set up the Mendeley auto sync : 1 Go to Mendeley Desktop preferences. 2 Select the BibTeX tab. 3 Select the box labeled “Enable BibTeX syncing” and select the BiBTeX file option you prefer. 4 Select the location where you want the generated .bib file(s) to be stored (this should be the same location as your LaTeX file(s)). sambaiga Latex 2017 31 / 65
  33. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography Auto-syncing from Mendeley to BibTeX Mendeley has the built-in capability to auto sync a BibTeX file when changes have been made to your Mendeley library. To set up the Mendeley auto sync : 1 Go to Mendeley Desktop preferences. 2 Select the BibTeX tab. 3 Select the box labeled “Enable BibTeX syncing” and select the BiBTeX file option you prefer. 4 Select the location where you want the generated .bib file(s) to be stored (this should be the same location as your LaTeX file(s)). sambaiga Latex 2017 31 / 65
  34. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography Auto-syncing from Mendeley to BibTeX Mendeley has the built-in capability to auto sync a BibTeX file when changes have been made to your Mendeley library. To set up the Mendeley auto sync : 1 Go to Mendeley Desktop preferences. 2 Select the BibTeX tab. 3 Select the box labeled “Enable BibTeX syncing” and select the BiBTeX file option you prefer. 4 Select the location where you want the generated .bib file(s) to be stored (this should be the same location as your LaTeX file(s)). sambaiga Latex 2017 31 / 65
  35. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Activity Activity 4 sambaiga Latex 2017 32 / 65
  36. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography Using BibTEX in your LATEX Document To use .bib file in latex document : • We can use natbib packages with \citet and \citep commands ⇒ Reference sheet for natbib usage. • Load with \usepackage [options]{natbib} See list of options at the end of Reference sheet for natbib usage. • Example : \usepackage [round]{natbib} • Include .bib file at the end of document with \bibliography {bib file} and specify a bibliographic styles \bibliographystyle {stylename}. sambaiga Latex 2017 33 / 65
  37. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography The BibTEX Format Example : \bibliographystyle{apa} %\bibliographystyle{apacite} \newpage \bibliography{bib/References_NILM} sambaiga Latex 2017 34 / 65
  38. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Bibliography The BibTEX Format Example : • According to Barker et al. (2015) . . . ⇒ According to \cite{Alcala2015} \ldots • . . . energy is important (Barker et al., 2015) ⇒ \ldots energy is important \citep{Barker2015} sambaiga Latex 2017 35 / 65
  39. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Activity Activity 5 sambaiga Latex 2017 36 / 65
  40. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Outline 1 Graphics, Figures and Tables 2 Bibliography 3 Proposal, Thesis and Joural paper with Latex 4 Presentation Slides : LaTeX Beamer sambaiga Latex 2017 37 / 65
  41. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Proposal, Thesis and Joural paper with Latex Folder structure : create a new folder (your project directory). • Add some additional folders within this folder : fig ⇒ will contain all images. tex ⇒ will contain .TEX file. bib ⇒ will contain bibliography files. • This will help you keep the overview about your files. Latex template make life easier. sambaiga Latex 2017 38 / 65
  42. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Activity Activity 6 sambaiga Latex 2017 39 / 65
  43. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Outline 1 Graphics, Figures and Tables 2 Bibliography 3 Proposal, Thesis and Joural paper with Latex 4 Presentation Slides : LaTeX Beamer sambaiga Latex 2017 40 / 65
  44. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré LaTeX Beamer The beamer class is a LaTeX class that allows you to create a beamer presentation and slides. The basic steps to create a beamer presentation • Specify beamer as document class instead of article. • Structure your LaTeX text using section and subsection commands. • Place the text of the individual slides inside frame commands. sambaiga Latex 2017 41 / 65
  45. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Frames Each beamer project is made up of a series of frames defined by \begin{frame}..\end{frame} environment. • Each frame produces one or more slides depending on the slide overlays. The title page frame : simply displays a title page \begin{frame} \titlepage \end{frame} The table of contents : dynamically creates a table of contents based on the sections and subsections. \begin{frame}{Outline}\tableofcontents \end{frame} sambaiga Latex 2017 42 / 65
  46. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Frame Basic Frame : \begin{frame}{Tittle} content... \end{frame} sambaiga Latex 2017 43 / 65
  47. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Sections and Subsections Presentations are divided into sections, subsections, and sub-subsections. sambaiga Latex 2017 44 / 65
  48. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Activity Activity 7 sambaiga Latex 2017 45 / 65
  49. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Beamer provides many ways to structure your frames so they appear well organized and are easy for the audience to follow. • Columns • Blocks sambaiga Latex 2017 46 / 65
  50. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Coulmns The column environment is called as shown below : \begin{columns} \column{.xx\textwidth} First column text/graphics \column{.xx\textwidth} Second column text/graphics \end{columns} sambaiga Latex 2017 47 / 65
  51. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Coulmns Here is a simple example : \begin{columns} \column{.5\textwidth} Column Number 1 \column{.5\textwidth} Column Number 2 \end{columns} Which gives us : Column Number 1 Column Number 2 sambaiga Latex 2017 48 / 65
  52. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Blocks Blocks can be used to separate a specific section of text or graphics from the rest of the frame. \begin{block}{Block Tittle} content... \end{block} Which gives us : Block Tittle content... sambaiga Latex 2017 49 / 65
  53. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Blocks Other block environments are also available : Theorem block \begin{theorem} $x^2 + y^2 = 1 \rightarrow$ Circle with $r = 1$ \end{theorem} Which gives us : Theorem x2 + y2 = 1 → Circle with r = 1 sambaiga Latex 2017 50 / 65
  54. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Blocks Other block environments are also available : Example block \begin{example} This is $\ldots$ \end{example} Which gives us : Example This is . . . sambaiga Latex 2017 51 / 65
  55. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Blocks Other block environments are also available : Alert block \begin{alertblock}{Title} This is $\ldots$ \end{alertblock} Which gives us : Title This is . . . sambaiga Latex 2017 52 / 65
  56. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Blocks Other block environments are also available : Lemma block \begin{lemma} $x^2 + y^2 = 1$ \end{lemma} Which gives us : Lemma x2 + y2 = 1 sambaiga Latex 2017 53 / 65
  57. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Blocks Other block environments are also available : Corollary block \begin{corollary} This proof \end{corollary} Which gives us : Corollary This proof sambaiga Latex 2017 54 / 65
  58. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Blocks Other block environments are also available : Proof block \begin{proof} This proof \end{proof} Which gives us : Démonstration. This proof sambaiga Latex 2017 55 / 65
  59. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Columns and Blocks We can combine columns and blocks to make a much cleaner looking presentation. \begin{columns}[t] \column{.5\textwidth} \begin{block}{Column 1 Header} Column 1 Body Text \end{block} \column{.5\textwidth} \begin{block}{Column 2 Header} Column 2 Body Text \end{block} \end{columns} sambaiga Latex 2017 56 / 65
  60. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Structuring a Frame Columns and Blocks Which gives us : Column 1 Header Column 1 Body Text Column 2 Header Column 2 Body Text Note. Notice that the [t] argument to the columns command top-aligned our blocks so they are vertically even as opposed to vertically centered on the slide. sambaiga Latex 2017 57 / 65
  61. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay In Beamer, overlays control the order in which parts of the frame appear. • An easy way to implement an overlay is to place the \pause command between the parts you want to show up separately. Example \textbf{Step1:} Compute the maximal value of $x^2$. \pause \textbf{Step2:} Compute the maximal value of $y^2$. \pause \textbf{Step3:} Add $x^2$ and $y^2$. sambaiga Latex 2017 58 / 65
  62. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Which results into : Step1 : Compute the maximal value of x2. Step2 : Compute the maximal value of y2. Step3 : Add x2 and y2. sambaiga Latex 2017 59 / 65
  63. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Which results into : Step1 : Compute the maximal value of x2. Step2 : Compute the maximal value of y2. Step3 : Add x2 and y2. sambaiga Latex 2017 59 / 65
  64. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Which results into : Step1 : Compute the maximal value of x2. Step2 : Compute the maximal value of y2. Step3 : Add x2 and y2. sambaiga Latex 2017 59 / 65
  65. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Which results into : Step1 : Compute the maximal value of x2. Step2 : Compute the maximal value of y2. Step3 : Add x2 and y2. sambaiga Latex 2017 60 / 65
  66. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Which results into : Step1 : Compute the maximal value of x2. Step2 : Compute the maximal value of y2. Step3 : Add x2 and y2. sambaiga Latex 2017 60 / 65
  67. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Which results into : Step1 : Compute the maximal value of x2. Step2 : Compute the maximal value of y2. Step3 : Add x2 and y2. sambaiga Latex 2017 60 / 65
  68. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Specification Overlay specifications are given in pointed brackets (<,>) and indicate which slide the corresponding information should appear on. • The specification <1-> means “display from slide 1 on.” • <1-3> means “display from slide 1 to slide 3.” • <2> means “display slide 2.” • <-3,5-6,8-> means “display on all slides except slides 4 and 7.” Note : If you want each item of a list to appear in order, use the [<+->] option E.g. \begin{frame}[<+->]{title} ..... \end{frame} sambaiga Latex 2017 61 / 65
  69. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Timing Specifications With Alert Consider : • Item Aaay • Item Bee • Item See • Item Dee \begin{itemize}[<+-| alert@+>] \item Item Aaay \item Item Bee \item Item See \item Item Dee \end{itemize} sambaiga Latex 2017 62 / 65
  70. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Timing Specifications With Alert Consider : • Item Aaay • Item Bee • Item See • Item Dee \begin{itemize}[<+-| alert@+>] \item Item Aaay \item Item Bee \item Item See \item Item Dee \end{itemize} sambaiga Latex 2017 62 / 65
  71. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Timing Specifications With Alert Consider : • Item Aaay • Item Bee • Item See • Item Dee \begin{itemize}[<+-| alert@+>] \item Item Aaay \item Item Bee \item Item See \item Item Dee \end{itemize} sambaiga Latex 2017 62 / 65
  72. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Timing Specifications With Alert Consider : • Item Aaay • Item Bee • Item See • Item Dee \begin{itemize}[<+-| alert@+>] \item Item Aaay \item Item Bee \item Item See \item Item Dee \end{itemize} sambaiga Latex 2017 62 / 65
  73. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Timing Specifications With Alert Consider : • Item Aaay • Item Bee • Item See • Item Dee \begin{itemize}[<+-| alert@+>] \item Item Aaay \item Item Bee \item Item See \item Item Dee \end{itemize} sambaiga Latex 2017 62 / 65
  74. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Overlay Timing Specifications With Alert Consider : • Item Aaay • Item Bee • Item See • Item Dee \begin{itemize}[<+-| alert@+>] \item Item Aaay \item Item Bee \item Item See \item Item Dee \end{itemize} sambaiga Latex 2017 62 / 65
  75. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré Activity Activity 8 sambaiga Latex 2017 63 / 65
  76. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré THANK YOU sambaiga Latex 2017 64 / 65
  77. Graphics, Figures and Tables Bibliography Proposal, Thesis and Joural paper

    with Latex Presentation Slides : LaTeX Beamer Ré References I Barker, S., Musthag, M., Irwin, D., and Shenoy, P. (2015). Non-intrusive load identification for smart outlets. In Proceeding of the 2014 IEEE International Conference on Smart Grid Communications, SmartGridComm 2014, pages 548–553. sambaiga Latex 2017 65 / 65