Advertisement
CosminVarlan

Template licenta latex - FII

May 5th, 2025
1,316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.51 KB | None | 0 0
  1. \documentclass[12pt]{report}
  2.  
  3. % includes
  4. \usepackage{geometry}           % page size
  5. \usepackage[utf8]{inputenc}     % encoding
  6. \usepackage{palatino}           % font
  7. \usepackage[romanian]{babel}    % language
  8. \usepackage{graphicx}           % images
  9. \usepackage{indentfirst}        % indentation
  10. \usepackage[nottoc]{tocbibind}  % table of contents style
  11. \usepackage[unicode]{hyperref}  % references from the table of contents
  12.  
  13. % includes options
  14. \geometry{  a4paper,            % scientific thesis standard
  15.             left=3cm,
  16.             right=2cm,
  17.             top=2cm,
  18.             bottom=2cm,
  19.  }
  20. \graphicspath{{images/}}        % path where the images are located
  21. \setlength{\parindent}{1cm}     % paragraph indentation
  22.  
  23. % other options
  24. \linespread{1.5}                % space between lines
  25. \renewcommand*\contentsname{Cuprins}    % table of contents name
  26.  
  27. % the document content
  28. \begin{document}
  29.     % macros (global)
  30.     \input{front/macros}
  31.    
  32.     % front-matter
  33.     \pagenumbering{gobble}
  34.    
  35.    \input{front/cover}
  36.    \input{front/titlepage}
  37.    \input{front/declaration1}
  38.    \input{front/declaration2}
  39.    
  40.     % table of contents
  41.     \tableofcontents
  42.    
  43.     % chapters
  44.     \setcounter{page}{1}
  45.    \pagenumbering{arabic}
  46.    
  47.    \input{chapters/motivation}
  48.    \input{chapters/introduction}
  49.    
  50.    \input{chapters/chapter1}
  51.    \input{chapters/chapter2}
  52.    \input{chapters/chapter3}
  53.    
  54.    \input{chapters/conclusions}
  55.    \input{chapters/bibliography}
  56. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement