Code used for the LaTeX first approach sessions during Research Seminar Lecture.
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.

176 lines
3.0 KiB

  1. %preamble:
  2. \documentclass{article}
  3. \usepackage[utf8x]{inputenc} %file encoding
  4. \usepackage{blindtext} %dummy text
  5. \usepackage[T1]{fontenc}
  6. \usepackage{amsmath}
  7. \usepackage[spanish, es-tabla]{babel}
  8. \usepackage{caption}
  9. \captionsetup[table]{skip=0.1in}
  10. \usepackage{booktabs}
  11. \usepackage{graphicx}
  12. \usepackage[version=4]{mhchem}
  13. %\renewcommand\spanishtablename{Cuadrito}
  14. \title{My Research Protocol}
  15. \author{Gerardo Marx Chávez-Campos}
  16. %\{Instituto Tecnológico de Morelia}
  17. \date{\today}
  18. %Document's body
  19. \begin{document}
  20. \maketitle{}
  21. \tableofcontents
  22. \section{Introduction}
  23. \blindtext[1]
  24. \section{Materials and Methods}
  25. \subsection{Experimental setup}
  26. In the Eq.\eqref{eq:function}, where $x=3$ is defined by
  27. \begin{equation}
  28. f(x)=x+2\label{eq:function}
  29. \end{equation}
  30. \begin{equation}
  31. \sum_{i=0}^{\infty}i^2/i
  32. \end{equation}
  33. \begin{equation}
  34. f(x)=\int_{t=0}^{t=10}sin(5t)dt
  35. \end{equation}
  36. \subsection{Experiments}
  37. \subsection*{Details}
  38. \subsection{More details}
  39. \ce{a A + b B -> c C + d D}
  40. \section{Develpment}
  41. \blindtext[2][1]
  42. \section{Results}
  43. Este es mi texto modificado
  44. \Blindtext[2][3]
  45. \section{Conclusion}
  46. \blindtext
  47. Por ejemplo en \cite{knuth1986}...
  48. % - Matrix
  49. % - Tables
  50. % - Items
  51. % - Figures
  52. % - Title definition, main objective and hypothesis
  53. \section*{Matrix equations}
  54. \begin{equation}
  55. \begin{bmatrix}
  56. a & b & c \\
  57. d & e & f
  58. \end{bmatrix}
  59. \end{equation}
  60. \begin{equation}
  61. A =
  62. \begin{bmatrix}
  63. a_{11} & a_{12} & a_{13} \\
  64. a_{21} & a_{22} & a_{23} \\
  65. a_{31} & a_{32} & a_{33}
  66. \end{bmatrix}
  67. \end{equation}
  68. \section*{Tables}
  69. \begin{table}[h]
  70. \centering
  71. \caption{\sc Collected information from ...}
  72. \begin{tabular}{|l|rc}
  73. \hline
  74. Column 1 & Column 2 & Column 3 \\\hline
  75. Exp1 & 4.5 & 4.4 \\
  76. Exp2 & 4.4 & 3.4 \\
  77. Exp3 & 4.5 & 4.4 \\
  78. Exp4 & 4.4 & 3.4 \\\hline
  79. \end{tabular}
  80. \end{table}
  81. In Table \ref{tb:experiments}
  82. \begin{table}[h]
  83. \centering
  84. \caption{\sc Collected information from ...}
  85. \label{tb:experiments}
  86. \begin{tabular}{ccc}
  87. \textbf{Column 1} & Column 2 & Column 3 \\\toprule
  88. Exp1 & 4.5 & 4.4 \\
  89. Exp2 & 4.4 & 3.4 \\
  90. Exp3 & 4.5 & 4.4 \\
  91. Exp4 & 4.4 & 3.4 \\
  92. \toprule
  93. \end{tabular}
  94. \end{table}
  95. \section*{Lists}
  96. \begin{itemize}
  97. \item Some text here
  98. \item Some text here
  99. \item Some text here
  100. \begin{itemize}
  101. \item Nested element
  102. \item Nested element
  103. \end{itemize}
  104. \item Some text here
  105. \item Some text here
  106. \end{itemize}
  107. \blindtext
  108. \begin{enumerate}
  109. \item Some text here
  110. \item Some text here
  111. \item Some text here
  112. \begin{enumerate}
  113. \item Nested element
  114. \item Nested element
  115. \end{enumerate}
  116. \item Some text here
  117. \item Some text here
  118. \end{enumerate}
  119. \begin{description}
  120. \item[Element:] The text here is ....
  121. \end{description}
  122. \section*{Figures}
  123. In the Fig. \ref{fig:a}
  124. \begin{figure}
  125. \centering
  126. %scale,
  127. \includegraphics[width=4.5in]{example-image-a}
  128. \caption{Some text to describe the figure.}
  129. \label{fig:a}
  130. \end{figure}
  131. \clearpage
  132. \begin{thebibliography}{2}
  133. \bibitem{knuth1986}
  134. Donald E. Knuth (1986) \emph{The name of the Book}, Addison-Wesley Prof.
  135. \end{thebibliography}
  136. \end{document}