Guest User

Untitled

a guest
Jan 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.21 KB | None | 0 0
  1. documentclass[twoside=false,12pt]{scrbook}
  2. %twoside=false--->both pages look the same
  3. usepackage{blindtext}
  4. usepackage[utf8]{inputenc}
  5.  
  6.  
  7. %%GRAPHICS PACKAGES
  8. %%----------------------------------------------------------------------
  9. %%----------------------------------------------------------------------
  10. usepackage{graphicx} %needed for the insertion of graphics,
  11. remove draft for final script.
  12. graphicspath{{./Images/}} %needed for choosing the image path
  13. usepackage{subcaption} %needed for allowing captioning of images
  14. setcapindent{0cm} %indents the caption borders to zero
  15. usepackage{float} %allows using [H] for images
  16. usepackage[font={small}]{caption} %image captions in different fonts
  17. %usepackage{float}
  18. %floatstyle{boxed}
  19. %restylefloat{figure} %defines a border for all the float images
  20. %%-----------------------------------------------------------------------
  21. %%-----------------------------------------------------------------------
  22.  
  23. %%PAGE GEOMETRY and PAGE SETUP, as in header/footer/footnote
  24. %%-----------------------------------------------------------------------
  25. %%-----------------------------------------------------------------------
  26. usepackage[a4paper, bindingoffset=6mm]{geometry}
  27. usepackage{fancyhdr}
  28. pagestyle{fancy}
  29. fancyhead{}
  30. lhead{Chapterthesection}
  31. rhead{Chitran Ghosal}
  32.  
  33. fancyfoot{}
  34. cfoot{thepage}
  35.  
  36. setlength{headheight}{15.2pt}
  37. %usepackage[
  38. %automark,
  39. %autooneside=false
  40. %]{scrlayer-scrpage}
  41. %pagestyle{scrheadings}
  42. %ohead{Nitish Agarwal}
  43. %ihead{Deployment and use of a WSN for situation detection}
  44. %ofoot{Master Thesis, TU Chemnitz, Embedded Systems, 2017}{}
  45. %ifoot[]{thepage}
  46. %lhead{}
  47. %rhead{}
  48. %title{The logic behind reciprocal lattice spaces}
  49. %author{Chitran Ghosal}
  50. %date{today}
  51. usepackage[bottom]{footmisc} %creates footnotes
  52. %%-----------------------------------------------------------------------
  53. %%-----------------------------------------------------------------------
  54.  
  55. %%MATHEMATICAL PACKAGES
  56. %%-----------------------------------------------------------------------
  57. %%-----------------------------------------------------------------------
  58. usepackage{amsmath,esint}
  59. usepackage{amssymb}
  60. usepackage{amsfonts}
  61. usepackage{tcolorbox}
  62. %%-----------------------------------------------------------------------
  63. %%-----------------------------------------------------------------------
  64.  
  65. %%BIBLIOGRAPHY PACKAGES
  66. %%-----------------------------------------------------------------------
  67. %%-----------------------------------------------------------------------
  68. usepackage[square, numbers]{natbib}
  69. usepackage[nottoc]{tocbibind}
  70. %%-----------------------------------------------------------------------
  71. %%-----------------------------------------------------------------------
  72.  
  73. %%PHYSICS AND CHEMISTRY PACKAGES
  74. %%-----------------------------------------------------------------------
  75. %%-----------------------------------------------------------------------
  76. usepackage{siunitx} %allows the use of degrees, angstrom...etc
  77. newcommand*chem[1]{ensuremath{mathrm{#1}}} %chemistry typesetting
  78. makeatletter
  79. newcommand*{rom}[1]{expandafter@slowromancapromannumeral #1@}
  80. makeatother
  81. usepackage{braket} %simplifies the use of the bra-ket notation
  82. newcommand*{hham}{hat{mathcal{H}}} %defines the hamiltonian
  83. usepackage{physics} %allows the use of additional commands
  84. %%-----------------------------------------------------------------------
  85. %%-----------------------------------------------------------------------
  86.  
  87. %%PACKAGE FOR APPENDICES
  88. %%-----------------------------------------------------------------------
  89. %%-----------------------------------------------------------------------
  90. usepackage[toc,page]{appendix}
  91. %%-----------------------------------------------------------------------
  92. %%-----------------------------------------------------------------------
  93.  
  94. begin{document}
  95. %maketitle
  96. frontmatter
  97. tableofcontents
  98. thispagestyle{empty}
  99. listoffigures
  100. thispagestyle{empty}
  101.  
  102. mainmatter
  103. input{Basics}
  104. input{char_eg}
  105. input{char_pthalo}
  106. % begin{appendices}
  107. %input{FourierTransform}
  108. %input{MoirePatterns}
  109. %input{superstructures}
  110. %end{appendices}
  111.  
  112. backmatter
  113. bibliographystyle{unsrt}
  114. bibliography{references}
  115. thispagestyle{empty}
  116. end{document}
Add Comment
Please, Sign In to add comment