A LaTeX class to write your proposal. The class is developed for the "Instituto Tecnológico de Morelia" and the course of "Seminario de Investigación 1"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

101 lines
3.2 KiB

3 years ago
6 years ago
3 years ago
3 years ago
  1. # The ITMorelia Protocol Class
  2. 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.
  3. # Repository structure
  4. 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.
  5. 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.
  6. ```bash
  7. .
  8. ├── Chapters
  9. │   ├── A01.tex
  10. │   ├── Chapter01.tex
  11. │   ├── Chapter02.tex
  12. │   └── Chapter0A.tex
  13. ├── configuration.tex
  14. ├── FrontBackMatter
  15. │   ├── Abstract.tex
  16. │   ├── Bibliography.tex
  17. │   ├── Colophon.tex
  18. │   ├── Contents.tex
  19. │   ├── Declaration.tex
  20. │   ├── Dedication.tex
  21. │   ├── Foreword.tex
  22. │   ├── glossary-entries.tex
  23. │   ├── Glossary.tex
  24. │   ├── Resumen.tex
  25. │   ├── Titleback.tex
  26. │   ├── TitlepageIng.tex
  27. │   └── TitlepageMC.tex
  28. ├── itm.jpg
  29. ├── itmthesis.cls
  30. ├── precontent.tex
  31. ├── README.md
  32. ├── Reference.bib
  33. ├── sepLogo.jpg
  34. ├── tecnmBW.png
  35. ├── thesisStructure.pdf
  36. └── thesisStructure.tex
  37. ```
  38. # The `thesisStructure` file
  39. The main file in the project is the `thesisStructure.tex` file.
  40. ```Tex
  41. % Engineering, master and phd degree
  42. %PROPOSAL(PROTOCOL) format, April 2021, for the
  43. %**Instituto Tecnológico de Morelia**
  44. \documentclass[listings,drafting,spanish]{itmthesis} %itm thesis class
  45. \input{configuration}% configuration and packages
  46. \input{FrontBackMatter/glossary-entries}
  47. \begin{document}
  48. \pagenumbering{roman} % Roman page numbering
  49. \input{precontent} %Includes titlepage, dedication, Foreword, abstract, publication, acknowledgement
  50. \include{FrontBackMatter/Contents} % Contents, list of figures/tables/listings and acronyms
  51. \pagenumbering{arabic} % Arabic page numbering
  52. %-=-=-=-=-=-=-=-=-=-=-=-=-
  53. % Thesis Main Contents
  54. \include{Chapters/Chapter01} %Introduction
  55. \cleardoublepage
  56. \include{Chapters/Chapter02} %Results
  57. %-=-=-=-=-=-=-=-=-=-=-=-=-
  58. % Apendix
  59. \appendix
  60. \include{Chapters/Chapter0A} % Appendix A
  61. %-=-=-=-=-=-=-=-=-=-=-=-=-
  62. % References
  63. \cleardoublepage
  64. \include{FrontBackMatter/Bibliography}
  65. %-=-=-=-=-=-=-=-=-=-=-=-=-
  66. % Back Matter
  67. \cleardoublepage
  68. \include{FrontBackMatter/Colophon}
  69. %-=-=-=-=-=-=-=-=-=-=-=-=-
  70. \end{document}
  71. ```
  72. ## Chapters
  73. ## Apendix
  74. ## including images
  75. # The `configuration` file
  76. # Defined variables
  77. # Titlepage
  78. # Glossary
  79. # References