Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. documentclass[final]{beamer}
  2.  
  3. usepackage[scale=1.24]{beamerposter} % Use the beamerposter package for laying out the poster
  4.  
  5. usetheme{confposter} % Use the confposter theme supplied with this template
  6.  
  7. setbeamercolor{block title}{fg=BlueGreen,bg=white} % Colors of the block titles
  8. setbeamercolor{block body}{fg=black,bg=white} % Colors of the body of blocks
  9. setbeamercolor{block alerted title}{fg=white,bg=dblue!70} % Colors of the highlighted block titles
  10. setbeamercolor{block alerted body}{fg=black,bg=dblue!10} % Colors of the body of highlighted blocks
  11.  
  12.  
  13. newlength{sepwid}
  14. newlength{onecolwid}
  15. newlength{twocolwid}
  16. newlength{threecolwid}
  17. setlength{paperwidth}{72in}
  18. setlength{paperheight}{48in}
  19. setlength{sepwid}{0.024paperwidth} setlength{onecolwid}{0.22paperwidth}
  20. setlength{twocolwid}{0.464paperwidth}
  21. setlength{threecolwid}{0.75paperwidth}
  22. setlength{topmargin}{-1in}
  23. %-----------------------------------------------------------
  24.  
  25. usepackage{graphicx} % Required for including images
  26.  
  27. usepackage{booktabs} % Top and bottom rules for tables
  28.  
  29. %----------------------------------------------------------------------------------------
  30. % TITLE SECTION
  31. %----------------------------------------------------------------------------------------
  32.  
  33. title{title} % Poster title
  34.  
  35. author{authors} % Author(s)
  36.  
  37. institute{institution} % Institution(s)
  38.  
  39.  
  40.  
  41. %----------------------------------------------------------------------------------------
  42.  
  43. begin{document}
  44.  
  45. addtobeamertemplate{block end}{}{vspace*{2ex}} % White space under blocks
  46. addtobeamertemplate{block alerted end}{}{vspace*{2ex}} % White space under highlighted (alert) blocks
  47.  
  48. addtobeamertemplate{headline}{}
  49. {
  50. begin{tikzpicture}[remember picture,overlay]
  51. node [shift={(-10 cm,-13cm)}] at (current page.north east) {includegraphics[height=8cm]{Tums_logo.jpg}};
  52. end{tikzpicture}
  53. }
  54.  
  55.  
  56.  
  57. setlength{belowcaptionskip}{2ex} % White space under figures
  58. setlengthbelowdisplayshortskip{2ex} % White space under equations
  59.  
  60. begin{frame}[t] % The whole poster is enclosed in one beamer frame
  61.  
  62. begin{columns}[t]
  63.  
  64. begin{column}{sepwid}end{column} % Empty spacer column
  65.  
  66. begin{column}{onecolwid} % The first column
  67. %and the rest...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement