Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. documentclass{beamer}
  2. usetheme{CambridgeUS}
  3. begin{document}
  4. begin{frame}{Centering the itemize}
  5. My first try: Centering the itemize
  6. begin{center}
  7. begin{itemize}
  8. item item1
  9. item item2
  10. end{itemize}
  11. end{center}
  12.  
  13. begin{center}
  14. My second try: Centering the itemize
  15. begin{itemize}
  16. centering
  17. item item1
  18. item item2
  19. end{itemize}
  20. end{center}
  21. end{frame}
  22. end{document}
  23.  
  24. documentclass{beamer}
  25. usetheme{CambridgeUS}
  26. newcommand{tabitem}{%
  27. usebeamertemplate{itemize item}hspace*{labelsep}}
  28.  
  29. begin{document}
  30.  
  31. begin{frame}{Centering the itemize}
  32. My first try: Centering the itemize
  33. begin{itemize}
  34. item item1
  35. item item2
  36. end{itemize}
  37.  
  38. begin{center}
  39. begin{tabular}{@{}l@{}}
  40. My second try: Centering the itemize \
  41. tabitem item1 \
  42. tabitem item2
  43. end{tabular}
  44. end{center}
  45. end{frame}
  46.  
  47. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement