%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ------------------------------- DOCSTRING ---------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Author(s): Patrick Krkotic and Martin Bammer, CERN
% Description: LaTex Version of ATS EDMS Word Template
% Version 1.0
% Date: 22/10/2023
% Version 2.0
% Date: 25/07/2024
% Permission is hereby granted, free of charge, to any person obtaining a copy
% of this template and associated documentation files, to deal
% without restriction, including without limitation the rights
% to use, copy, modify, merge, publish and distribute
% copies of the template, and to permit persons to whom the template is
% furnished to do so.
% The above copyright notice and this permission notice shall be included in all
% copies or substantial portions of the template.
% How to use this Template:
% ---------------------------------------------------------------------------------
%Here in the main.tex file are no inputs to be done by the user.
%The main file has to stay on the top level of the document-tree to ensure that all inputs and packages are processed in correct order
% The files to be modified by the user are:
% - glossary.tex
% - abstract.tex
% - input.tex
% - textbody.tex
% - appendix.tex
% - bilio.bib
% Predefined Project Logos are: "LHC", "HL-LHC" and "FCC"
% Should you want to add a project logo of your own to this file: the code to modify can be found in the "logo_logic.tex" file (You can add your projet logo by uploading it to the template_style folder and by expanding the if-clause in the "logo_logic.tex" file accordingly. You will also have to define the project name as "keyword" in this file)
% The authors of the file did their best to comment each piece of code in a concise and compact manner, as long as the original authors are at CERN, please feel free to write an email in case you have questions.
% ---------------------------- END OF DOCSTRING -----------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ------------------------------- PREAMBLE ----------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[10pt]{article} %Define the class of document and default font size
\input{Template/style} % This file contains all the setup code for the document and all the package imports are in here as well, this file contains nothing to modify by the user
%----------------------------------------------------------------------------------
\input{input} % This file contains all the inputs for the titlepage and the page-headers of the document
%if your project-logo is not already in this template you can add it to the logic for your project here:
\input{Template/logo_logic}
% (you also have to upload the images you want in the template style logos folder)
% ----------------------------- END OF PREAMBLE ------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% -------------------------------- DOCUMENT ----------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%this line begins the document
\begin{document} %
%-----------------------------------------------------------------------------------
%this is the link to the file "glossary.tex" of terms
\input{glossary} %If this file is not needed, feel free to comment this line out
%-----------------------------------------------------------------------------------
%this is the link to the front matter of the document ("front_matter.tex")
%In the front matter you can find the titlepage, the table of contents, the list of figures & tables (the link for the glossary is also in front_matter.tex)
%No inputs have to be made in the front_matter.txt
\input{Template/front_matter} %
%-----------------------------------------------------------------------------------
%This is the abstract for the EDMS Document. The abstract will be displayed on the titlepage
%The text in the EDMSabstract environment can be changed and formatted as the user wishes
\begin{EDMSabstract}
\input{abstract} % Place the text for the absract in this file
\end{EDMSabstract}
%this is the link to the textbody of the document.
%all text (chapters, sections, paragraphs) should be located solely in the
%"textbody.tex" file, as it is good LaTeX-coding-practice to keep the main and setup files clean and functional
\input{textbody} %
%-----------------------------------------------------------------------------------
%bibliography
\printbibliography %this piece of code inserts the bibliography at this place of the document
%-----------------------------------------------------------------------------------
%appendix
\appendix %this line marks the beginning of the appendix of the document
% this is the link to the appendix-textbody of the document
\input{appendix.tex} % place the text, tables, images, etc. in "appendix.tex" only
%-----------------------------------------------------------------------------------
\end{document} % This line is the end of the document no further code should be beyont this command
% ----------------------------- END OF DOCUMENT ------------------------------------