Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. documentclass[pdftex,12pt,a4paper]{report}
  2. usepackage{titlesec}
  3. titleformat{chapter}{bfserieshuge}{thechapter.}{20pt}{huge}
  4.  
  5. usepackage[top=3cm, bottom=3cm, left=3.5cm, right=3cm]{geometry}
  6.  
  7. % graphics images
  8. usepackage[pdftex]{graphicx}
  9. usepackage[toc,page]{appendix}
  10. usepackage{slashbox}
  11.  
  12. % 1.5 line spacing
  13. usepackage{setspace}
  14. usepackage{tabu}
  15. usepackage{tabularx}
  16. onehalfspacing
  17.  
  18. % maths symbols
  19. usepackage{amsmath}
  20. %usepackage[math-style = upright]{unicode-math}
  21.  
  22. % table package
  23. usepackage{multirow}
  24.  
  25. % citation style
  26. usepackage[colorlinks=true,linkcolor=blue]{hyperref}%
  27. makeatletter
  28. letHy@linktocHy@linktoc@none
  29. makeatother
  30.  
  31. usepackage[square,sort,comma,numbers]{natbib}
  32. usepackage{amsfonts}
  33.  
  34. %renewcommand{chaptername}{}
  35.  
  36. usepackage{tikz,colortbl}
  37. usetikzlibrary{calc}
  38. usepackage{zref-savepos}
  39.  
  40. usepackage[bf,small,tableposition=top]{caption}
  41. usepackage{subfig}
  42. usepackage{float}
  43. usepackage{url}
  44. usepackage{pdfpages}
  45.  
  46. begin{document}
  47.  
  48. % cover
  49. %input{cover_report.tex}
  50. includepdf[pages=1]{CoverPage}
  51.  
  52. % abstract
  53. setcounter{page}{1}
  54. pagenumbering{roman}
  55. input{abstract.tex}
  56.  
  57. % acknowledgement
  58. input{acknowledgements.tex}
  59.  
  60. % table of content
  61. tableofcontents
  62. addcontentsline{toc}{chapter}{Contents}{Bibliography}
  63.  
  64. % list of tables
  65. %listoftables
  66. %addcontentsline{toc}{chapter}{List of Tables}
  67.  
  68. % list of figures
  69. %listoffigures
  70. %addcontentsline{toc}{chapter}{List of Figures}
  71.  
  72. % intro chapter
  73. cleardoublepage
  74. pagenumbering{arabic}
  75. input{intro.tex}
  76. input{literature.tex}
  77. input{dataset.tex}
  78. %input{propose.tex}
  79. input{module_design.tex}
  80. input{training.tex}
  81. input{results.tex}
  82. input{conclusion.tex}
  83.  
  84. % references
  85. %bibliographystyle{plainnat}
  86. bibliographystyle{unsrtnat}
  87. bibliography{fyp}
  88.  
  89. % appendix
  90. %input{appendix.tex}
  91. end{document}
  92.  
  93. documentclass{report}
  94. usepackage{hyperref}
  95.  
  96. makeatletter
  97. letHy@linktocHy@linktoc@none
  98. makeatother
  99.  
  100. begin{document}
  101.  
  102. tableofcontents
  103.  
  104. chapter{Test}
  105.  
  106. phantomsection
  107. addcontentsline{toc}{chapter}{Bibliography}
  108. bibliographystyle{unsrtnat}
  109. bibliography{fyp}
  110.  
  111. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement