Advertisement
Guest User

Untitled

a guest
Nov 13th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.98 KB | None | 0 0
  1. \documentclass{book}
  2. \usepackage[utf8]{inputenc}
  3.  
  4. \title{exmpl}
  5. \author{damian.wiatrzyk }
  6. \date{November 2018}
  7.  
  8. \usepackage{setspace}
  9. \usepackage{natbib}
  10. \usepackage{graphicx}
  11. \usepackage[utf8]{inputenc}
  12. \usepackage[T1]{fontenc}
  13. \usepackage[polish]{babel}
  14. \usepackage{polski}
  15. \usepackage[cp1250]{inputenc}
  16. \usepackage{enumerate}
  17. \usepackage{amsmath}
  18. \usepackage{mathtools}
  19.  
  20. \begin{document}
  21.  
  22. \maketitle
  23. \tableofcontents
  24.  
  25. \chapter{Rozdzial 1}
  26.  
  27. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin nibh augue, suscipit a, scelerisque sed, lacinia in, mi. Cras vel lorem. Etiam pellentesque aliquet tellus. Phasellus pharetra nulla ac diam. Quisque semper justo at risus. Donec venenatis, turpis vel hendrerit interdum, dui ligula ultricies purus, sed posuere libero dui id orci.
  28.  
  29. \begin{singlespace}
  30. \textnormal { Lorem ipsum}.  
  31. \textbf {Lorem ipsum},
  32. \texttt{ Lorem ipsum},
  33. \emph{ Lorem ipsum},
  34. \textit{ Lorem ipsum},
  35. \textsc{ Lorem ipsum}
  36. \end{singlespace}
  37.  
  38. \chapter{Rozdzial 2}
  39. \begin{enumerate}
  40. \item PP
  41. \item IO
  42. \item GK
  43. \end{enumerate}
  44.  
  45. \chapter{Rozdzial 3}
  46. \begin{enumerate}[a)]
  47. \item Haskell
  48. \item Pikaczu
  49. \item Squirtle
  50. \item Abra
  51. \end{enumerate}
  52.  
  53. \chapter{Rozdzial 4}
  54.  
  55. Odsylacz \ref{twr:wojewodztwa}.
  56.  
  57. Odsylacz do strony \pageref{twr:wojewodztwa} .
  58.  
  59. This is obvious \cite{norman}.
  60.  
  61. Angielskie: `x' ``tekst w cudzysłowach''.
  62. W języku polskim używamy ,,takich
  63. \footnote{Serio}''  cudzysłowów.
  64.  
  65. \chapter{Rozdzial 5}
  66. \begin{figure}[h!]
  67. \centering
  68. \includegraphics[scale=2.0]{universe.jpg}
  69. \caption{Galaktyka Bombing}
  70. \label{fig:univerise}
  71. \end{figure}
  72.  
  73. \begin{table}[t]
  74. \centering
  75. \begin{tabular}{|c|c|c|}
  76. \hline
  77. Województwo & Populacja & Powierzchnia\\
  78. \hline
  79. Opolskie & 991 161 & 9411,87\\
  80. Wielkopolska & 1111 & 12354\\
  81. Podlasie & 3214 & 5341\\
  82. \hline
  83. \end{tabular}
  84. \caption{podpis do tabeli}
  85. \label{twr:wojewodztwa}
  86. \end{table}
  87.  
  88. \chapter{Rozdzial 6}
  89.  
  90. \(\binom{n}{k} = \frac{n!}{k!(n-k)!}\)
  91.  
  92. \[a^{2}+b^{2}=c^{2}\]
  93.  
  94. \[\frac{\frac{1}{2}+\frac{1}{4}}{\frac{1}{8}}\neq1\]
  95.  
  96. \[\displaystyle\sum_{i=1}^{n} i^{2} = \frac{ n(n +1)(2n +1) }{6}\]
  97.  
  98. \[C_2^{−3} + O_2^{0} \rightarrow C^{+3}O_2^{-2} + H_2^{+1}O^{-2}\]
  99.  
  100. \(A_{m,n} =
  101. \begin{pmatrix}
  102.  a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
  103.  a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
  104.  \vdots  & \vdots  & \ddots & \vdots  \\
  105.  a_{m,1} & a_{m,2} & \cdots & a_{m,n}
  106. \end{pmatrix}\)
  107.  
  108.  
  109.  
  110. \begin{thebibliography}{9}
  111. \bibitem{latexcompanion}
  112. Michel Goossens, Frank Mittelbach, and Alexander Samarin.
  113. \textit{The \LaTeX\ Companion}.
  114. Addison-Wesley, Reading, Massachusetts, 1993.
  115.  
  116. \bibitem{einstein}
  117. Albert Einstein.
  118. \textit{Zur Elektrodynamik bewegter K{\"o}rper}. (German)
  119. [\textit{On the electrodynamics of moving bodies}].
  120. Annalen der Physik, 322(10):891–921, 1905.
  121.  
  122. \bibitem{knuthwebsite}
  123. Knuth: Computers and Typesetting,
  124. \\\texttt{http://www-cs-faculty.stanford.edu/\~{}uno/abcde.html}
  125. \end{thebibliography}
  126.  
  127.  
  128.  
  129. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement