Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.64 KB | None | 0 0
  1. \documentclass[final]{beamer}
  2. \usepackage{cite}
  3.  
  4. \usepackage[scale=1.24]{beamerposter} % Use the beamerposter package for laying out the poster
  5.  
  6. \usetheme{confposter} % Use the confposter theme supplied with this template
  7.  
  8. \newlength{\sepwid}
  9. \newlength{\onecolwid}
  10. \newlength{\twocolwid}
  11. \newlength{\threecolwid}
  12. \setlength{\paperwidth}{48in} % A0 width: 46.8in
  13. \setlength{\paperheight}{36in} % A0 height: 33.1in
  14. \setlength{\sepwid}{0.024\paperwidth} % Separation width (white space) between columns
  15. \setlength{\onecolwid}{0.22\paperwidth} % Width of one column
  16. \setlength{\twocolwid}{0.464\paperwidth} % Width of two columns
  17. \setlength{\threecolwid}{0.708\paperwidth} % Width of three columns
  18. \setlength{\topmargin}{-0.5in} % Reduce the top margin size
  19. %-----------------------------------------------------------
  20.  
  21. \usepackage{graphicx}  % Required for including images
  22.  
  23. \usepackage{booktabs} % Top and bottom rules for tables
  24.  
  25. %----------------------------------------------------------------------------------------
  26. %   TITLE SECTION
  27. %----------------------------------------------------------------------------------------
  28.  
  29. \title{TEST} % Poster title
  30.  
  31. \author{AUTHOR}
  32. \institute{INSTITUTE}
  33.  
  34. %----------------------------------------------------------------------------------------
  35.  
  36. \begin{filecontents}{\jobname.bib}
  37. @book{knuth,
  38.  author       = {Knuth, Donald E.},
  39.  title        = {The {\TeX} book},
  40.  date         = 1984,
  41.  maintitle    = {Computers \& Typesetting},
  42.  volume       = {A},
  43.  publisher    = {Addison-Wesley},
  44.  location     = {Reading, Mass.},
  45.  langid       = {english},
  46.  langidopts   = {variant=american},
  47.  sortyear     = {1984-1},
  48.  sorttitle    = {Computers & Typesetting A},
  49.  indexsorttitle= {The TeXbook},
  50.  indextitle   = {\protect\TeX book, The},
  51.  shorttitle   = {\TeX book}
  52. }
  53.  
  54. @article{einstein,
  55.     author = {Einstein, A.},
  56.     title = {Die Grundlage der allgemeinen Relativitätstheorie},
  57.     journal = {Annalen der Physik},
  58.     volume = {354},
  59.     number = {7},
  60.     doi = {10.1002/andp.19163540702},
  61.     pages = {769--822},
  62.     year = {1916}
  63. }
  64. \end{filecontents}
  65.  
  66. \begin{document}
  67.  
  68. \setlength{\belowcaptionskip}{2ex} % White space under figures
  69. \setlength\belowdisplayshortskip{2ex} % White space under equations
  70.  
  71.  
  72. \begin{frame}[t]
  73.  
  74.  \begin{columns}[t]
  75.  
  76.    \begin{column}{\onecolwid} % The first column
  77.  
  78.  
  79.  
  80.       \begin{block}{Block}
  81.  
  82.        CITATIONS \cite{einstein,knuth}.  
  83.      \end{block}
  84.  
  85.  
  86.      \begin{block}{References}
  87.        \bibliographystyle{abbrv}
  88.        \bibliography{\jobname}
  89.  
  90.      \end{block}
  91.  
  92.  
  93.    \end{column}
  94.  
  95.  \end{columns}
  96.  
  97. \end{frame}
  98.  
  99. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement