Advertisement
max2201111

Untitled

Oct 6th, 2023
1,354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.81 KB | Science | 0 0
  1. \documentclass[
  2.     a4paper, % Page size
  3.     fontsize=10pt, % Base font size
  4.     twoside=true,
  5. verbose,hypertexnames=false, parskip=off,  
  6. ]{kaobook}
  7.  
  8.  
  9. \let\providelength\relax
  10. \usepackage{dialogue}
  11.  
  12.  
  13. % Choose the language
  14. \ifxetexorluatex
  15.     \let\providelength\relax
  16.     \usepackage{polyglossia}
  17.     \setmainlanguage{english}
  18. \else
  19.    \let\providelength\relax
  20.     \usepackage[english]{babel} % Load characters and hyphenation
  21. \fi
  22. \usepackage[english=british]{csquotes}  % English quotes
  23.  
  24.  
  25.  
  26. %\documentclass{book}
  27.  
  28.  
  29.  
  30. \usepackage{amsmath,amssymb}
  31. \usepackage{mathrsfs}
  32.  
  33. \usepackage{imakeidx}
  34. \usepackage{hyperref,lipsum}
  35.  
  36. \makeindex
  37.  
  38.  
  39.  
  40.  
  41. \usepackage{enumitem}
  42. \usepackage{etoolbox}
  43. \usepackage{indentfirst}
  44.  
  45.  % include the chapter number
  46.  \setlist[enumerate]{label=\thechapter.\arabic{*},resume}
  47.  
  48.  % restart the enumerate list every chapter
  49.  \preto\chapter{%
  50.    \restartlist{enumerate}%
  51. }
  52.  
  53.  
  54.  
  55.  
  56. % Load packages for testing
  57. \usepackage{blindtext}
  58.  
  59. \usepackage{kaobiblio}
  60. \addbibresource{main.bib} % Bibliography file
  61.  
  62. % Load mathematical packages for theorems and related environments
  63. \usepackage[framed=true]{kaotheorems}
  64.  
  65. % Load the package for hyperreferences
  66.  
  67. \usepackage{kaorefs}
  68.  
  69. \graphicspath{{examples/documentation/images/}{images/}} % Paths in which to look for images
  70.  
  71. \makeindex[columns=3, title=Alphabetical Index, intoc] % Make LaTeX produce the files required to compile the index
  72.  
  73. \makeglossaries % Make LaTeX produce the files required to compile the glossary
  74. \input{glossary.tex} % Include the glossary definitions
  75.  
  76. \makenomenclature % Make LaTeX produce the files required to compile the nomenclature
  77.  
  78.  
  79. \usepackage{indentfirst}
  80.  
  81. \addtokomafont{date}{\includegraphics[width=6cm]{gfx/TFZsuperellipse_bw}\endgraf}
  82.  
  83.  
  84. \usepackage[Lenny]{fncychap}
  85.  
  86.  
  87. \begin{document}
  88.  
  89. %----------------------------------------------------------------------------------------
  90. %   BOOK INFORMATION
  91. %----------------------------------------------------------------------------------------
  92.  
  93. %\titlehead{The \texttt{proper} class}
  94. \subject{}
  95.  
  96.  
  97.  
  98.  %%%%%%%%%%%%%%%%%%%%%%%%
  99.  %% HERE
  100.  %%%%%%%%%%%%%%%%%%%%%%%%
  101. %\title[ [{\normalfont\texttt{kaobook}} class]{in1111111111111 {\normalfont\texttt{Exploring Advanced Techniques }}}]
  102. %\subtitle{A Comprehensive Study on Neural Networks, Transfer Learning, and Multimodal Approaches}
  103.  
  104.  
  105. \title{111111111}{2222222222222222}
  106.  
  107.  
  108. \author[Y]{JP\thanks{A \LaTeX\ lover}}
  109.  
  110.  
  111.  
  112.  
  113. \date{\today}
  114.  
  115. \publishers{A thesis submitted in partial fulfillment for the
  116. degree of Doctor of Philosophy}
  117.  
  118. \frontmatter    
  119. \makeatletter
  120.  
  121.      
  122. \makeatother
  123.  
  124.  
  125. \maketitle
  126.  
  127. \index{preface}
  128.  
  129.  
  130.  
  131. \mainmatter % Denotes the start of the main document content, resets page numbering and uses arabic numbers
  132.  
  133.  
  134. \printindex % Output the index
  135.  
  136.  
  137.  
  138. \end{document}
  139.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement