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.

105 lines
3.9 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. The file is mainly divided on four parts: 1)configuration, 2)Front Matter, 3) Main contents, and 4) References and 5)Back Matter.
  40. From here the document class, for the Protocol, is defined with `\documentclass[<options>]{itmthesis}`, and this file determine the way the PDF file is generated by the options. The options defined are:
  41. - `drafting`: The options prints the date of compilation at the end of each page. Suitable opton to know that the latest version is on review or writing process.
  42. - `listing`: The option loads the `listings` package and configures the compilation to generates a gray scale listings outputs.
  43. - `spanish`: The option enables the babel package to print-out the sectional units on spanish language; otherwise, english will be used.
  44. ```Tex
  45. % Engineering, master and phd degree
  46. %PROPOSAL(PROTOCOL) format, April 2021, for the
  47. %**Instituto Tecnológico de Morelia**
  48. \documentclass[listings,drafting,spanish]{itmthesis} %itm thesis class
  49. \input{configuration}% configuration and packages
  50. \input{FrontBackMatter/glossary-entries}
  51. \begin{document}
  52. \pagenumbering{roman} % Roman page numbering
  53. \input{precontent} %Includes titlepage, dedication, Foreword, abstract, publication, acknowledgement
  54. \include{FrontBackMatter/Contents} % Contents, list of figures/tables/listings and acronyms
  55. \pagenumbering{arabic} % Arabic page numbering
  56. %-=-=-=-=-=-=-=-=-=-=-=-=-
  57. % Thesis Main Contents
  58. \include{Chapters/Chapter01} %Introduction
  59. \cleardoublepage
  60. \include{Chapters/Chapter02} %Results
  61. %-=-=-=-=-=-=-=-=-=-=-=-=-
  62. % Apendix
  63. \appendix
  64. \include{Chapters/Chapter0A} % Appendix A
  65. %-=-=-=-=-=-=-=-=-=-=-=-=-
  66. % References
  67. \cleardoublepage
  68. \include{FrontBackMatter/Bibliography}
  69. %-=-=-=-=-=-=-=-=-=-=-=-=-
  70. % Back Matter
  71. \cleardoublepage
  72. \include{FrontBackMatter/Colophon}
  73. %-=-=-=-=-=-=-=-=-=-=-=-=-
  74. \end{document}
  75. ```
  76. ## Chapters
  77. ## Apendix
  78. ## including images
  79. # The `configuration` file
  80. # Defined variables
  81. # Titlepage
  82. # Glossary
  83. # References