Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. \documentclass{beamer}
  2. \usepackage[utf8]{inputenc}
  3. \mode<presentation>
  4. {
  5. \usetheme{Warsaw}
  6. \setbeamercovered{transparent}
  7. }
  8. \usepackage{times}
  9. \usepackage[T1]{fontenc}
  10. \usepackage{tikz}
  11. \title[Short Paper Title]
  12. {Trójkąt równoboczny}
  13. \subtitle
  14. {Wzór na pole}
  15. \author[Martyna Glock]
  16. \institute[Universities of Somewhere and Elsewhere]
  17. {
  18. \inst{1}
  19. Wydział Matematyki i Informatyki\\
  20. Uniwersytet im. Adama Mickiewicza
  21. \date[Short Occasion]
  22. {15.01.2019/ Wstęp do informatyki}
  23.  
  24. \begin{document}
  25.  
  26. \begin{frame}
  27. \titlepage
  28. \end{frame}
  29.  
  30.  
  31. \section{Trójkąt równoboczny}
  32.  
  33. \subsection[Rysunek]{Rysunek}
  34.  
  35. \begin{frame}{Rysunek}
  36.  
  37.  
  38. \includegraphics{troj.png}
  39.  
  40. \end{frame}
  41.  
  42.  
  43. \begin{frame}{Trójkąt}
  44.  
  45. \begin{tikzpicture}
  46. \draw (0,0) coordinate (A) -- (6,0) coordinate (B) -- (3,6) coordinate (C)
  47. \path[name intersections={of=A and B,name=a}];
  48. \end{tikzpicture}
  49.  
  50.  
  51. \end{frame}
  52.  
  53.  
  54. \section{Komplementaerwinkel}
  55.  
  56. \begin{frame}{Pole trójkąta}
  57. \begin{itemize}
  58. \item Pole trójkąta obliczamy ze wzoru:
  59. \begin{itemize}
  60. \item \begin{equation} {$P = \frac{a^2\sqrt{3}}{4}$}
  61. \end{equation}
  62. \end{itemize}
  63. \item Gdzie a to długość boku \\
  64. \end{itemize}
  65. \end{frame}
  66.  
  67.  
  68. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement