Advertisement
Guest User

Untitled

a guest
May 31st, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. documentclass{beamer}
  2. usetheme{Dresden}
  3. begin{document}
  4. begin{frame}{Problem}
  5. begin{itemize}
  6. item
  7. begin{columns}
  8. column{.7linewidth}
  9. Here I want some text with an image to the right, all in the same item
  10. column{.3linewidth}
  11. rule{.2linewidth}{.2linewidth}
  12. end{columns}
  13. item Some more text here that is long enough to continue bellow the image
  14. end{itemize}
  15. end{frame}
  16. end{document}
  17.  
  18. documentclass{beamer}
  19. usetheme{Dresden}
  20.  
  21. begin{document}
  22. begin{frame}{Solution}
  23. begin{columns}
  24. column{.65linewidth}
  25. begin{itemize}
  26. item Here I want some text with an image to the right, all in the same item
  27. end{itemize}
  28. column{.25linewidth}
  29. rule{.2linewidth}{.2linewidth}
  30. end{columns}
  31. begin{itemize}
  32. item Some more text here that is long enough to continue bellow the image
  33. end{itemize}
  34. end{frame}
  35. end{document}
  36.  
  37. documentclass{beamer}
  38. usetheme{Dresden}
  39.  
  40. begin{document}
  41. begin{frame}{Solution}
  42. begin{columns}[onlytextwidth] %<---
  43. column{.7textwidth} %<---
  44. begin{itemize}
  45. item Here I want some text with an image to the right, all in the same item
  46. end{itemize}
  47. column{.3textwidth} %<---
  48. rule{.2linewidth}{.2linewidth}
  49. end{columns}
  50. begin{itemize}
  51. item Some more text here that is long enough to continue bellow the image
  52. end{itemize}
  53. end{frame}
  54. end{document}
  55.  
  56. documentclass{beamer}
  57. usetheme{Dresden}
  58. begin{document}
  59. begin{frame}{Problem}
  60. begin{itemize}
  61. item
  62. begin{minipage}[t]{0.7linewidth}
  63. Here I want some text with an image to the right, all in the same item
  64. end{minipage}%
  65. begin{minipage}{.3linewidth}
  66. centering
  67. rule{.2linewidth}{.2linewidth}
  68. end{minipage}
  69. item Some more text here that is long enough to continue bellow the image
  70. end{itemize}
  71. end{frame}
  72. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement