Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.92 KB | None | 0 0
  1. %
  2. % Layout retirado de http://www.di.uminho.pt/~prh/curplc09.html#notas
  3. %
  4. \documentclass[11pt]{report}
  5. \usepackage[portuges]{babel}
  6. \usepackage[utf8]{inputenc}
  7. \usepackage{geometry}
  8. \geometry{margin=1in, bottom=1.5in, top=1.5in}
  9. \usepackage{graphicx}
  10. \usepackage{verbatim}
  11. \usepackage{amsmath}
  12. \usepackage{amsfonts}
  13. \usepackage{amssymb}
  14. \usepackage{import}
  15. \usepackage{amsthm}
  16. \usepackage{enumerate}
  17. \usepackage{bussproofs}
  18. \usepackage{xcolor}
  19. \usepackage{minted}
  20. \usepackage[titletoc]{appendix}
  21. \usepackage[hidelinks]{hyperref}
  22. \usepackage{float}
  23.  
  24. \usepackage{caption}
  25. \usepackage{appendix}
  26.  
  27. \newtheorem{acknowledgement}{Acknowledgement}[section]
  28. \newtheorem{algorithm}{Algorithm}[section]
  29. \newtheorem{axiom}{Axiom}[section]
  30. \newtheorem{case}{Case}[section]
  31. \newtheorem{claim}{Claim}[section]
  32. \newtheorem{conclusion}{Conclusion}[section]
  33. \newtheorem{condition}{Condition}[section]
  34. \newtheorem{conjecture}{Conjecture}[section]
  35. \newtheorem{corollary}{Corollary}[section]
  36. \newtheorem{criterion}{Criterion}[section]
  37. \newtheorem{definition}{Definição}[section]
  38. \newtheorem{theorem}{Teorema}[section]
  39.  
  40. \usepackage {ifthen}
  41.  
  42. \newboolean{printCode}
  43. \setboolean{printCode}{true}
  44.  
  45. \theoremstyle{definition}
  46. \newtheorem{example}[definition]{Exemplo}
  47.  
  48. \newtheorem{exer}{Exercício}[section]
  49. \newtheorem{lema}{Lema}[section]
  50. \newtheorem{notation}{Notation}[section]
  51. \newtheorem{problem}{Problem}[section]
  52. \newtheorem{proposition}{Proposition}[section]
  53. \newtheorem{remark}{Nota}[section]
  54. \newtheorem{solution}{Solution}[section]
  55. \newtheorem{assumption}{Assumption}[section]
  56. \newtheorem{summary}{Summary}[section]
  57. \newtheorem{note}{Note}[section]
  58. \newtheorem{doubt}{Doubt}[section]
  59. \newtheorem{properties}{Properties}[section]
  60.  
  61.  
  62. \renewcommand{\ra}{\rightarrow}
  63. \renewcommand{\L}{\Lambda}
  64.  
  65. \usepackage{makeidx}
  66. \usepackage{xfrac}
  67. \usepackage{url}
  68.  
  69. \usepackage{listings}
  70. %LISTING - GENERAL
  71. \lstset{
  72.     basicstyle=\small,
  73.     numbers=left,
  74.     numberstyle=\tiny,
  75.     numbersep=5pt,
  76.     breaklines=true,
  77.        frame=tB,
  78.     mathescape=true,
  79.     escapeinside={(*@}{@*)}
  80. }
  81.  
  82. \usepackage{xspace}
  83. \setlength{\parindent}{1em}
  84. \linespread{1.2}
  85.  
  86. \begin{document}
  87.  
  88. \begin{titlepage}
  89. \begin{center}
  90. \vspace{4.5cm}
  91.  
  92.  
  93. \begin{figure}[h]
  94. \centering
  95. \includegraphics[width=5cm]{imagens/logo-ee.png}
  96. \end{figure} \vspace{0.3cm}
  97.  
  98. {\large \textbf{Escola de Engenharia da Universidade do Minho\\
  99. Departamento de Informática  \\ Mestrado Integrado em Engenharia Informática \\ Gramáticas na Compreensão de Software}} \\\vspace{4cm}
  100. {\Huge \textbf {Sistema de Perguntas e Respostas\\ \vspace{5cm}}}
  101. {\large \textnormal {
  102. João Gomes, A74033\\
  103. Tiago Fraga, A74092 }\\ \vspace{1.5cm}}
  104.  
  105. \large{14 de Janeiro de 2019}
  106.  
  107. \end{center}
  108. \end{titlepage}
  109.  
  110. \tableofcontents
  111. \listoffigures
  112.  
  113. \input{Introducao.tex}
  114.  
  115. \input{Contextualizacao.tex}
  116.  
  117. \input{Conclusao.tex}
  118.  
  119.  
  120. \bibliographystyle{unsrt}
  121. \bibliography{ref}
  122.  
  123. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement