Advertisement
Guest User

Minimal Example

a guest
Nov 12th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. %% LyX 2.3.4.4 created this file. For more info, see http://www.lyx.org/.
  2. %% Do not edit unless you really know what you are doing.
  3. \documentclass[english]{report}
  4. \usepackage[T1]{fontenc}
  5. \usepackage[latin9]{inputenc}
  6. \setcounter{secnumdepth}{3}
  7. \setcounter{tocdepth}{3}
  8. \usepackage{amsmath}
  9. \usepackage{amsthm}
  10.  
  11. \makeatletter
  12. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
  13. \numberwithin{equation}{section}
  14. \numberwithin{figure}{section}
  15.  
  16. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
  17. % additional packages
  18. \usepackage{tabularx}
  19. \usepackage{setspace}
  20. \usepackage{amsthm}
  21. \usepackage{rotating}
  22. \usepackage{caption}
  23. \usepackage{epsfig}
  24. \usepackage{indentfirst}
  25. \usepackage{fancyhdr}
  26. \usepackage{url}
  27. \usepackage{cite}
  28. \usepackage[normalem]{ulem}
  29. \usepackage[table]{xcolor}
  30. \usepackage{booktabs}
  31. \usepackage{algpseudocode}
  32.  
  33. % this is a dirty fix for LTS version of Ubuntu/Kubuntu that has a
  34. % very outdated "geometry" package
  35. \include{geometry.sty}
  36.  
  37. % fixes the page number of the first page of each chapter
  38. \fancypagestyle{plain}{
  39. \fancyhead{}
  40. \renewcommand{\headrulewidth}{0pt}
  41. \renewcommand{\footrulewidth}{0pt}
  42. \fancyfoot[OC]{\begin{flushright}\thepage\end{flushright}}
  43. }
  44.  
  45. % fancy headers for the thesis
  46. \fancyhead{}
  47. \fancyhead[LE]{\slshape \nouppercase \leftmark}
  48. \fancyhead[RO]{\slshape \nouppercase \rightmark}
  49. \fancyfoot[EC]{\begin{flushleft}\thepage\end{flushleft}}
  50. \fancyfoot[OC]{\begin{flushright}\thepage\end{flushright}}
  51. \renewcommand{\headrulewidth}{0.4pt}
  52. \setlength{\headheight}{14pt}
  53.  
  54. \makeatother
  55.  
  56. \usepackage{babel}
  57. \begin{document}
  58.  
  59. \chapter{Chap one}
  60.  
  61. Cite the first \cite{B.Guida}
  62.  
  63. Cite the second \cite{articleCRC2019}...
  64.  
  65. Cite third text \cite{articleCCG2017}....
  66.  
  67. Cite fourth \cite{FerraraAdvanced}...
  68.  
  69. \pagebreak{}
  70.  
  71. \bibliographystyle{unsrt}
  72. \bibliography{bibliography}
  73.  
  74. \end{document}
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement