Gerardo Marx Chávez-Campos 51cf31846e | 3 years ago | |
---|---|---|
Chapters | 3 years ago | |
FrontBackMatter | 3 years ago | |
.gitignore | 3 years ago | |
README.md | 3 years ago | |
Reference.bib | 6 years ago | |
configuration.tex | 3 years ago | |
itm.jpg | 3 years ago | |
itmthesis.cls | 5 years ago | |
precontent.tex | 3 years ago | |
sepLogo.jpg | 3 years ago | |
tecnmBW.png | 3 years ago | |
thesisStructure.pdf | 3 years ago | |
thesisStructure.tex | 3 years ago |
The present Redme file shows how to work with and compile the Protocol-Class
in LaTeX. This class is mainly base in the Thesis-Class
. If you want know what sections should be included and its content visit the Wiki of this repository.
Below you can see the repository's contents. The repository is made of 27 files and 2 folders. The folder Chapters
includes each .tex
file that will be included on your portocol; later you will learn how to included. On the other hand, the folder FrontBackMatter
folder includes .tex
files related with common chapters/section required on protocols guides like: Titlepage, Abstract, Colophon, Dedication, Glossary, and others; you can include as much as you need.
In the root
are files related with the organization and the structure of the Protocol (the thesisStructure.tex
and precontent.tex
files). Also, in root
is included the main file that gives the special format to the document (itmthesis.cls
), and finally the Reference.bib
file to include a bibliography on your work.
.
├── Chapters
│ ├── A01.tex
│ ├── Chapter01.tex
│ ├── Chapter02.tex
│ └── Chapter0A.tex
├── configuration.tex
├── FrontBackMatter
│ ├── Abstract.tex
│ ├── Bibliography.tex
│ ├── Colophon.tex
│ ├── Contents.tex
│ ├── Declaration.tex
│ ├── Dedication.tex
│ ├── Foreword.tex
│ ├── glossary-entries.tex
│ ├── Glossary.tex
│ ├── Resumen.tex
│ ├── Titleback.tex
│ ├── TitlepageIng.tex
│ └── TitlepageMC.tex
├── itm.jpg
├── itmthesis.cls
├── precontent.tex
├── README.md
├── Reference.bib
├── sepLogo.jpg
├── tecnmBW.png
├── thesisStructure.pdf
└── thesisStructure.tex
thesisStructure
fileThe main file in the project is the thesisStructure.tex
file.
% Engineering, master and phd degree
%PROPOSAL(PROTOCOL) format, April 2021, for the
%**Instituto Tecnológico de Morelia**
\documentclass[listings,drafting,spanish]{itmthesis} %itm thesis class
\input{configuration}% configuration and packages
\input{FrontBackMatter/glossary-entries}
\begin{document}
\pagenumbering{roman} % Roman page numbering
\input{precontent} %Includes titlepage, dedication, Foreword, abstract, publication, acknowledgement
\include{FrontBackMatter/Contents} % Contents, list of figures/tables/listings and acronyms
\pagenumbering{arabic} % Arabic page numbering
%-=-=-=-=-=-=-=-=-=-=-=-=-
% Thesis Main Contents
\include{Chapters/Chapter01} %Introduction
\cleardoublepage
\include{Chapters/Chapter02} %Results
%-=-=-=-=-=-=-=-=-=-=-=-=-
% Apendix
\appendix
\include{Chapters/Chapter0A} % Appendix A
%-=-=-=-=-=-=-=-=-=-=-=-=-
% References
\cleardoublepage
\include{FrontBackMatter/Bibliography}
%-=-=-=-=-=-=-=-=-=-=-=-=-
% Back Matter
\cleardoublepage
\include{FrontBackMatter/Colophon}
%-=-=-=-=-=-=-=-=-=-=-=-=-
\end{document}
configuration
file