Advertisement
argui
Mar 18th, 2024
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. PUT CREEF Dissertation Template
  2. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  3. %% Bachelor's & Master's Thesis Template                                 %%
  4. %% Copyleft by Dawid Weiss & Marta Szachniuk                             %%
  5. %% Faculty of Automatic Control, Robotics, and Electrical Engineering    %%
  6. %% Poznan University of Technology, 2023                                 %%
  7. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  8.  
  9.  
  10. % Szkielet dla pracy inżynierskiej/magisterskiej pisanej w języku polskim.
  11. \documentclass[polish,bachelor,a4paper,oneside]{ppcreefthesis}
  12.  
  13. % Template for an engineering/master's thesis written in English.
  14. % \documentclass[english,bachelor,a4paper,oneside]{ppcreefthesis}
  15.  
  16.  
  17. \usepackage[utf8]{inputenc}
  18. \usepackage[OT4]{fontenc}
  19.  
  20. %--------------------------------------
  21. % Strona tytułowa \ Front page
  22. %--------------------------------------
  23.  
  24. % Autorzy pracy, jeśli jest ich więcej niż jeden
  25. % wstaw między nimi separator \and
  26.  
  27. % Authors of the thesis, if there is more than one
  28. % insert a separator between them \and
  29.  
  30. \author{%
  31.    Imię Nazwisko \album{12345} \and
  32.   Imię Nazwisko \album{54321} \and
  33.   Imię Nazwisko \album{13579} }
  34. \authortitle{}                                % Do not change.
  35.  
  36. \title{Temat pracy dyplomowej}
  37.  
  38. % Promotor pracy
  39. % Your supervisor comes here.
  40.  
  41. \ppsupervisor{prof.~dr hab.~inż.~Imię Nazwisko}
  42. \ppinstitute{Instytut Robotyki i Inteligencji Maszynowej \\
  43.             Zakład Sterowania i Elektroniki Przemysłowej}
  44.  
  45. % Rok złożenia pracy
  46. % Year of final submission (not graduation!)
  47. \ppyear{2023}                                
  48.  
  49.  
  50. \begin{document}
  51.  
  52. % Pierwsza strona zaczyna się tutaj
  53. % Front matter starts here
  54. \frontmatter\pagestyle{empty}%
  55. \maketitle\cleardoublepage%
  56.  
  57. %--------------------------------------
  58. % Miejsce na kartę pracy dyplomowej - opcjonalnie, nie jest wymagane
  59. %--------------------------------------
  60. \thispagestyle{empty}\vspace*{\fill}%
  61. \begin{center}Tutaj będzie skan karty pracy dyplomowej. \end{center}%
  62. \vfill\cleardoublepage%
  63. %--------------------------------------
  64.  
  65.  
  66. %--------------------------------------
  67. % Spis treści
  68. %--------------------------------------
  69.  
  70. \pagenumbering{Roman}
  71. \pagestyle{ppfcmthesis}
  72. \tableofcontents*
  73. \cleardoublepage % Zaczynamy od nieparzystej strony
  74.  
  75. %--------------------------------------
  76. % Rozdziały
  77. %--------------------------------------
  78.  
  79. %Najwygodniej jeśli każdy rozdział znajduje się w oddzielnym pliku
  80. \mainmatter%
  81. \input{chapters/01-wstep.tex}
  82. \input{chapters/02-teoria.tex}
  83. \input{chapters/03-praca-wlasna.tex}
  84. \input{chapters/04-zakonczenie.tex}
  85.  
  86. %--------------------------------------
  87. % Literatura
  88. %--------------------------------------
  89.  
  90. \bibliographystyle{plain}{\raggedright\sloppy\small\bibliography{bibliografia}}
  91.  
  92. %--------------------------------------
  93. % Dodatki
  94. %--------------------------------------
  95.  
  96. \cleardoublepage\appendix%
  97. \newpage
  98. \input{chapters/zalacznik.tex}
  99.  
  100. %--------------------------------------
  101. % Informacja o prawach autorskich
  102. %--------------------------------------
  103.  
  104. \ppcolophon
  105.  
  106. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement