Advertisement
Guest User

thesis.tex

a guest
Jan 7th, 2023
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 4.16 KB | None | 0 0
  1. %!TEX TS-program = /usr/texbin/pdflatex
  2. %!GEDIT texbin = /usr/local/texlive/current/bin/x86_64-linux/pdflatex
  3. %
  4. %   ''Becker-Vorlage'' style LaTeX template
  5.  
  6. %   This template is  MIT licensed, authors:
  7. %   Jan Betzing <jan.betzing@ercis.uni-muenster.de> *corresponding author
  8. %   Dominik Lekse <dominik@lekse.de>
  9. %
  10. %   Basic file to demonstrate the usage of this LaTeX template.
  11. %   You can build your own paper/thesis on top of this file.
  12. %   Simply adjust the document class and all metadata and start working.
  13. %
  14. \documentclass[
  15.     language=english, % set to english or german
  16.     type=seminar % set to bachelor, master or seminar
  17. ]{isthesis}
  18.  
  19. % Graphics rendering using TikZ
  20. % See: https://en.wikibooks.org/wiki/LaTeX/PGF/TikZ
  21. \usepackage{tikz}
  22. % Include required TikZ libraries here, some exemplary libraries are pre-included
  23. \usetikzlibrary{calc}
  24. \usetikzlibrary{matrix}
  25. \usetikzlibrary{positioning}
  26. \usetikzlibrary{shapes.geometric}
  27.  
  28. % Import acronyms
  29. \input{acronyms}
  30.  
  31. % Import symbols
  32. \input{symbols}
  33.  
  34. % Document meta information
  35. \isthesis{
  36.    title={A \LaTeX \- template for writing theses},
  37.    author-firstname={Firstname Middlename},
  38.    author-lastname={Lastname},
  39.    author-email={student@uni-muenster.de},
  40.    author-phone={+49 251 8338100}, % Use international numbers format
  41.     author-matriculation={123456},
  42.    author-address={Schlossplatz 2},
  43.    author-zip={48149},
  44.    author-city={M\"{u}nster},
  45.    principal-supervisor={Prof. Dr. Dr. h.c. Dr. h.c. J\"org Becker}, % This has to be a professor
  46.     associate-supervisor={Firstname Lastname, M.Sc.}, % This is your main supervisor, i.e., a post doc or PhD student
  47.     tutor-supervisor={}, % If required, define an additional supervisor resp. tutor here
  48.     group={Chair for Information Systems and Information Management},
  49.    group-institute={University of M\"unster},
  50.    studies={Information Systems}, %your field of studies, i.e. Wirtschaftsinformatik or Information Systems
  51.     %associate-group={}, % When the thesis is done in cooperation with another chair, add it here
  52.     %associate-group-institute={}, % add cooperating institute or university here
  53.     seminar={Scientific Writing for Beginners}, % The title of your seminar
  54.     submission-date={2017-02-01}, % The date you handed in your document
  55.     %primary-logo={}, % Uses the WWU logo by default
  56.     %primary-logo-height={}, % Uses 16mm as default height
  57.     %secondary-logo={}, % Logo of the secondary institution (cooperating chair/university), USES Faculty logo by default
  58.     %secondary-logo-height={} % Uses 16mm as default height
  59. }
  60. \begin{document}
  61.     % Title page
  62.     \maketitle
  63.  
  64.     % Quote
  65.     % You can put an optional quote page in front of your content
  66.    \quotepage[author={Arthur C. Clarke}]{
  67.             Any sufficiently advanced technology is indistinguishable from magic.
  68.   }
  69.  
  70.     % Table of contents
  71.     \tableofcontents
  72.  
  73.     % List of figures (if you have figures)
  74.     \listoffigures
  75.  
  76.     % List of tables (if you have tables)
  77.     \listoftables
  78.    
  79.     % List of listings (if you have listings)
  80.     \lstlistoflistings
  81.  
  82.     % List of abbreviations (if you use acronyms)
  83.     \listofabbreviations
  84.  
  85.     % List of symbols (if you use symbols)
  86.     \listofsymbols
  87.  
  88.     % Abstract
  89.     %
  90.     % Comment out this part, if you don't require an abstract
  91.     \begin{abstract}
  92.         \input{abstract}
  93.     \end{abstract}
  94.  
  95.     % Content
  96.     \begin{content}
  97.         \input{body01}
  98.         % Add your content files here
  99.     \end{content}
  100.  
  101.     % Appendix
  102.      \begin{appendix}
  103.         \input{appendix}
  104.     \end{appendix}
  105.  
  106.     % Fixes page numbering for bibliography
  107.     \cleardoublepage
  108.     \phantomsection
  109.  
  110.     % References
  111.     \references{library}
  112.  
  113.     % Declaration of authorship
  114.     % \authorshipstatement[pagenumbering=false]
  115.     \authorshipstatement[pagenumbering=true]
  116.     % \authorshipstatement[pagenumbering=only]
  117.    
  118.     % Consent form for use of plagiarism detection software
  119.     % \consentform[pagenumbering=false]
  120.     \consentform[pagenumbering=true]
  121.     % \consentform[pagenumbering=only]
  122.    
  123.     % Bonus: Wordcount
  124.     % cd %FOLDER WHERE THE .tex FILES ARE IN %
  125.     % clear
  126.     % texcount -total -q -col -sum *.tex
  127.    
  128. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement