Guest User

Untitled

a guest
Nov 24th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. mode<presentation>
  2. ProcessOptionsBeamer
  3.  
  4. % ---------------------------------
  5. % color definitions
  6. usepackage{color}
  7. definecolor{new_yellow}{RGB}{251,190,94}
  8.  
  9. % ---------------------------------
  10. % set colors of elements
  11.  
  12. % set the title color
  13. setbeamercolor{title}{fg=new_yellow}
  14.  
  15. documentclass[aspectratio=169]{beamer}
  16.  
  17. usepackage[english]{babel}
  18. usepackage[latin1]{inputenc}
  19. usepackage{courier}
  20. usepackage[T1]{fontenc}
  21.  
  22. % -----------
  23. % Set new style
  24.  
  25. usetheme{new}
  26.  
  27. % -- Section title pages
  28. AtBeginSection[]{
  29. begin{frame}
  30. vfill
  31. centering
  32. begin{block}{}
  33. begin{beamercolorbox}[sep=8pt,center,shadow=true,rounded=true]{title}
  34. usebeamerfont{title}insertsectionheadpar%
  35. end{beamercolorbox}
  36. end{block}
  37. vfill
  38. end{frame}
  39. }
  40.  
  41. %----------------
  42. % Title and authors
  43.  
  44. title{My presentation}
  45.  
  46. subtitle{Coded with LaTeX}
  47.  
  48. author[Jane Smith]{Jane Smith}
  49.  
  50. institute[The Institute]{The Institute}
  51.  
  52. date{today}
  53.  
  54. %====================================================================
  55. begin{document}
  56.  
  57. %----------------
  58. % Title frame
  59.  
  60. % load backgound for title
  61. setbeamertemplate{background}{
  62. includegraphics[width=paperwidth,height=paperheight]
  63. {background_title.png}}
  64.  
  65. { setbeamertemplate{footline}{} % no footer on title
  66. begin{frame}
  67. titlepage
  68. end{frame}
  69. }
Add Comment
Please, Sign In to add comment