Guest User

Untitled

a guest
Jun 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. documentclass[12pt,a4paper]{report}
  2. setcounter{tocdepth}{5}
  3. setcounter{secnumdepth}{5}
  4. %renewcommand{algorithmicforall}{textbf{for each}}
  5. usepackage{graphicx}
  6. usepackage{indentfirst}
  7. usepackage{hyperref}
  8. usepackage{color,soul}
  9. usepackage{amsmath}
  10. usepackage{algorithm}
  11. %usepackage{algorithmic}
  12. usepackage{algcompatible}
  13. usepackage{booktabs}
  14. usepackage{caption}
  15. usepackage{tikz}
  16. usepackage[english]{babel}
  17. usepackage{natbib}
  18. usepackage[final]{pdfpages} %for embedding another pdf
  19. usepackage{setspace}
  20. captionsetup[table]{skip=10pt}
  21. definecolor{lightblue}{rgb}{.80,.85,1}
  22. sethlcolor{lightblue}
  23. usepackage{verbatim}
  24. usepackage{parskip}
  25. usepackage{enumitem}
  26.  
  27.  
  28. begin{document}
  29.  
  30. %renewcommandbibname{References} %Renames "Bibliography" to "References" on ref page
  31.  
  32. %include other pages
  33. input{chapters/title.tex}
  34. input{chapters/certificate.tex}
  35. %input{./declaration.tex}
  36. %input{./dedication.tex}
  37. %input{./acknowledgement.tex}
  38. %input{./abstract.tex}
  39.  
  40.  
  41. pagenumbering{roman} %numbering before main content starts
  42. tableofcontents
  43. listoffigures
  44. listoftables
  45.  
  46. newpage
  47. pagenumbering{arabic} %reset numbering to normal for the main content
  48.  
  49. chapter{Introduction}
  50. input{chapters/Chapter1.tex}
  51. chapter{Literature Review}
  52. input{chapters/Chapter2.tex}
  53. chapter{Techniques Used}
  54. input{chapters/Chapter3.tex}
  55. begin{comment}
  56. input{./chapter_4.tex}
  57. input{./chapter_5.tex}
  58. %input{./appendix.tex}
  59. %input{./references.bib}
  60. %mbox{}
  61. %nocite{*}
  62. %bibliographystyle{ieeetr}
  63. %printbibliography
  64. end{comment}
  65.  
  66. newpage
  67. %addbibresource{reference.bib}
  68. %renewcommand{thepage}{}
  69. bibliography{reference}
  70. bibliographystyle{unsrt}
  71. end{document}
Add Comment
Please, Sign In to add comment