Repository for the international webinar 2021, prepared with Jade, ITM, and Óbuda universities.
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.

346 lines
10 KiB

3 years ago
  1. % LaTeX webinar
  2. % February 15 to 20, 2021
  3. % Gerardo Marx Chávez-Campos
  4. %--------------------------------
  5. \documentclass[gray]{beamer}
  6. \usetheme{Warsaw}
  7. \setbeamercovered{transparent}
  8. %Preamble
  9. \usepackage[spanish]{babel}
  10. \usepackage[utf8]{inputenc}
  11. \usepackage{graphicx}
  12. \usepackage{hyperref}
  13. \usepackage{color}
  14. \usepackage{xcolor}
  15. \usepackage{listings}
  16. \usepackage[compatibility=false]{caption}
  17. \DeclareCaptionFont{white}{\color{white}}
  18. \DeclareCaptionFormat{listing}{
  19. \colorbox{gray}{\parbox{\textwidth}{#1#2#3}}}
  20. \captionsetup[lstlisting]{
  21. format=listing,labelfont=white,textfont=white}
  22. \makeatletter
  23. \let\@@magyar@captionfix\relax
  24. \makeatother
  25. \usepackage{amssymb}
  26. %scripts configuration
  27. \lstset{numbers=left, numberstyle=\tiny\color{gray}, numbersep=5pt, stepnumber=1,language=[LaTeX]TeX,basicstyle=\footnotesize}
  28. \renewcommand{\lstlistingname}{Example}% Listing -> Example
  29. % ---------
  30. \title[\LaTeX{} Webinar]{How to Write your Next Thesis in \LaTeX}
  31. \author[gmarx\_cc@itmorelia.edu.mx]{Gerardo Marx Chávez-Campos}
  32. \institute[ITM]{Instituto Tecnológico de Morelia: Industrial Applications Society}
  33. \titlegraphic{\includegraphics[width=3cm]{logoItm.pdf}}
  34. \begin{document}
  35. %----Title page:
  36. \begin{frame}[plain]
  37. \titlepage
  38. \end{frame}
  39. %======= Part 1 =========
  40. \section{Part 1: Introduction to \LaTeX}
  41. \subsection{What I going to learn?}
  42. % +++++++++++++++++++
  43. \begin{frame}
  44. \frametitle{What I going to learn?}
  45. \begin{itemize}
  46. \item How \LaTeX{} works
  47. \item How to use Overleaf, \LaTeX{} on a server
  48. \item Create simple and complex documents(Thesis)
  49. \item How to use different document classes
  50. \item Inserting Equations, Tables, and Figures
  51. \item How to create \textbf{wonderful} plots
  52. \item Create bibliography files and sync them with bib\TeX
  53. \end{itemize}
  54. \end{frame}
  55. %+++++++++++++++++++
  56. \subsection{¿What is \LaTeX{}?}
  57. \begin{frame}
  58. \frametitle{What is \LaTeX?}
  59. \begin{columns}
  60. \column{0.35\textwidth}
  61. \includegraphics[width=1.2\textwidth]{donald1.png}
  62. Donald Knuth
  63. \column{0.65\textwidth}
  64. \begin{itemize}
  65. \item {\bfseries What is \LaTeX?} \LaTeX{} is a document preparation system focused on \textbf{quality and structure} %created by Donald Knuth in 1978.
  66. \item The system allows to prepare \textbf{scientific and technical} documents, reports, \textbf{thesis}, presentations, and more.
  67. \item \textbf{It is not} a text processor like MS-Word.
  68. \item \textbf{Why I should use \LaTeX?} Repeatability, portable, high quality, focus on context not on format.
  69. \end{itemize}
  70. \end{columns}
  71. \end{frame}
  72. %+++++++++++++++++++
  73. \begin{frame}
  74. \frametitle{How can I try \LaTeX{}?}
  75. \begin{itemize}
  76. \item <1->\textbf{GUI}:
  77. \TeX{}Studio(Windows, MacOS, Linux);
  78. \TeX{}Maker(All)
  79. \item<2-> \textbf{Distributions}: Mik\TeX{}, Mac\TeX{}, \TeX{}Live
  80. \item<3-> \textbf{Online tools}: Share-\LaTeX{} and Overleaf
  81. \end{itemize}
  82. \end{frame}
  83. % +++++++++++++++++++
  84. % overleaf:
  85. \begin{frame}{``Los geht's'' - Overleaf}
  86. \begin{figure}
  87. \centering
  88. \includegraphics[width=0.7\textwidth]{doh}
  89. %\caption{Esperemos que la computadora no explote...}
  90. \end{figure}
  91. \end{frame}
  92. % +++++++++++++++++++
  93. %---First example:
  94. \subsection{A basic document}
  95. \begin{frame}[containsverbatim]
  96. \frametitle{The first example of \LaTeX}
  97. %\example 1:
  98. The first example will test that system is working properly and get comfortable with Overleaf.
  99. \begin{lstlisting}[label=example1,caption=Hello World]
  100. \documentclass{standalone}
  101. \begin{document}
  102. Hello \LaTeX{}.
  103. \end{document}
  104. \end{lstlisting}
  105. \end{frame}
  106. %here 10/Feb/2021
  107. % +++++++++++++++++++
  108. %Example 2:
  109. %\begin{frame}[containsverbatim]
  110. % \frametitle{Preámbulo y cuerpo}
  111. %\begin{itemize}
  112. % \item Un documento en \LaTeX{} está
  113. % compuesto por dos partes fundamentales:
  114. % \textbf{el preámbulo} (librerías) y
  115. % \textbf{el cuerpo} del texto
  116. % (código)[documentoLaTeX2014].
  117. % \item El preámbulo contiene indicaciones
  118. % generales que afectan a la totalidad del
  119. % documento; su formato.
  120. % \end{itemize}
  121. %\begin{lstlisting}[caption=Ejemplo de
  122. %preámbulo]
  123. %\documentclass[opciones]{clase}
  124. %\usepackage[opciones]{paquete}
  125. %\title{Nombre-Documento}
  126. % ...
  127. %\end{lstlisting}
  128. %
  129. % Hay diversidad de clases de documentos
  130. % (\textbf{article, book, report}) y paquetes.
  131. %\end{frame}
  132. %% +++++++++++++++++++
  133. %\begin{frame}[containsverbatim]
  134. % Mientras que el cuerpo del documento se
  135. % encuentra entre las siguientes líneas de
  136. % código:
  137. % \begin{lstlisting}[caption=Ejemplo]
  138. % \begin{document}
  139. % \section{nombreSec1}
  140. % \section{nombreSec2}
  141. % \section{nombreSec3}
  142. % ...
  143. % \end{document}
  144. % \end{lstlisting}
  145. %
  146. % \textit{Note que para contener el cuerpo del
  147. % documento utilizamos un \textbf{entorno.}
  148. %}\end{frame}
  149. %% +++++++++++++++++++
  150. %%clases y paquetes
  151. %\subsection{Clases y paquetes básicos}
  152. %\begin{frame}
  153. %\frametitle{Clases}
  154. %Las clases son obligatorias para cada
  155. %documento.\textbf{ Solo puede haber un tipo de documento.}
  156. %
  157. %Los más comunes son:
  158. %\begin{itemize}
  159. %\item <1-> \textbf{book:} Para escribir libros.
  160. % \textit{Estructura el documento en partes,
  161. % capítulos, secciones, subsecciones, etc.
  162. % }\item <2->\textbf{article:} Se utiliza para
  163. % escribir artículos. \textit{Estructura el documento
  164. % en secciones, subsecciones, parrafos, etc.
  165. % }\item <3->\textbf{report:} Para escribir
  166. % informes, es parecido al anterior.
  167. % \item <4->\textbf{beamer:} Para hacer documentos
  168. % para presentaciones/diapositivas.
  169. % \item <5->\textbf{tikz-poster:}Para el
  170. % desarrollo de posters.
  171. %\end{itemize}
  172. %\end{frame}
  173. %% +++++++++++++++++++
  174. %\begin{frame}
  175. %\frametitle{Paquetes}
  176. %Los paquetes son opcionales, pueden ser
  177. %múltiples y usarse con cualquiera de las
  178. %clases.\\
  179. %\vspace{0.1in}
  180. %Algunos de los paquetes básicos son:
  181. % \begin{itemize}
  182. % \item <1-> \textbf{babel:} Permite trabajar
  183. % con múltiples idiomas. \textit{Siempre debe
  184. % ser el primer paquete}.
  185. %\item <2->\textbf{inputenc:} Permite especificar
  186. % el tipo de codificación en los caracteres
  187. % ingresados por el teclado.
  188. % \item <3->\textbf{graphicx.} Permite incluir gráficos y procesarlos.
  189. % \end{itemize}
  190. % \end{frame}
  191. %%+++++++++++++++++++
  192. % \begin{frame}
  193. % \centering
  194. % \includegraphics[width=3.2in]{phdRefreshments}\\
  195. %
  196. % \LARGE{Receso}
  197. % \end{frame}
  198. %%=*=*=*=*=*=*=*=*=*=*=*=*
  199. %\subsection{Preparando un reporte}
  200. %%Después del receso
  201. %%+++++++++++++++++++
  202. % \begin{frame}
  203. % \frametitle{Definición de las secciones}
  204. % \begin{columns}
  205. % \column{0.5\textwidth}
  206. % \includegraphics[width=2.in]{structure}
  207. % \column{0.5\textwidth}
  208. % \begin{itemize}
  209. % \item<1->Las secciones son normalmente
  210. % las mismas en los reportes; más o menos
  211. % \item<2->No deben de pasar de entre 5 a 7
  212. % hojas
  213. % \item<3-> Las imágenes son en blanco y
  214. % negro
  215. % \item<4-> Contenido del artículo en texto
  216. % plano e imágenes por separado
  217. % \item<5-> ¿Qué escribir primero y cómo?
  218. % \end{itemize}
  219. % \end{columns}
  220. % \end{frame}
  221. %%======= Día 2 =========
  222. %\section{Día 2: Sección Metodología}
  223. % \begin{frame}
  224. % \frametitle{Que incluir en la metodología}
  225. % \begin{columns}
  226. % \column{0.5\textwidth}
  227. % \includegraphics[width=1.8in]{structure-2}
  228. % \column{0.5\textwidth}
  229. % \begin{itemize}
  230. % \item<1-> Materialesd y metodos, or Procedimeinto, Experimentos, Simulación, Metodología o Modelo
  231. % \item<2->Indica que se hizo y/o utilizo; para replicar los resultados
  232. % \item<3->El lector debe aprender del reporte
  233. % \item<4-> Normalmente la sección se acompaña de un esquema
  234. % \end{itemize}
  235. % \end{columns}
  236. % \end{frame}
  237. %
  238. %%+++++++++++++++++++
  239. %\subsection{Revisando metodología}
  240. %\begin{frame}
  241. % \frametitle{Empezando por el final}
  242. % \includegraphics[width=4.5in]{methodology}
  243. %\end{frame}
  244. % \begin{frame}
  245. % \frametitle{Nuestra metodología}
  246. % \centering
  247. % \includegraphics[width=4.5in]{mistakes}
  248. %\end{frame}% +++++++++++++++++++
  249. %%+++++++++++++++++++
  250. %
  251. %
  252. %%+++++++++++++++++++
  253. %\subsection{Bibliografía}
  254. %\begin{frame}{Entorno bibliografía}
  255. % El entorno \texttt{thebibliography} es
  256. % nativo de \LaTeX{} y puede preferirse
  257. % cuando el documento \textbf{contendrá pocas citas
  258. % bibliográficas}(menos de 20) o será un documento que
  259. % pasará por la revisión de diversos
  260. % autores\cite[pág 21]{Mata2014}. En la
  261. % siguiente sección de código se muestra el
  262. % entorno \texttt{thebibliography}.
  263. %\end{frame}
  264. %
  265. %%+++++++++++++++++++
  266. %\begin{frame}[containsverbatim]
  267. %\begin{lstlisting}[caption=Entorno ]
  268. %Preambulo
  269. %...
  270. %\begin{document}
  271. %...
  272. %\begin{thebibliography}{X}
  273. %\bibitem{clave1} Texto de la referencia 1.
  274. %\bibitem{clave2} Texto de la referencia 2.
  275. %\end{thebibliography}
  276. %\end{document}
  277. %\end{lstlisting}
  278. % El argumento $X$ del entorno indica el
  279. % número de entradas que habrá en el
  280. % documento. Y cada entrada va acompañada del
  281. % comando \texttt{$\backslash$bibitem}, el
  282. % argumento (\texttt{clave1}) es una referencia para
  283. % el usuario y se recomienda que sea el autor
  284. % y el año, tal como se usa en el estilo de
  285. % referencias tipo \textbf{Harvard}. El texto
  286. % de la referencia debe usarse dependiendo
  287. % del estilo de documento que se redacte.
  288. %\end{frame}
  289. %%+++++++++++++++++++
  290. %\begin{frame}[containsverbatim]
  291. %\frametitle{Citas bibliográficas}
  292. %Para hacer una cita bibliográfica debe usarse la instrucción \texttt{$\backslash$cite} con la etiqueta correspondiente.
  293. %
  294. %\begin{lstlisting}[caption=Ejemplo de citas bibliográficas]
  295. %Como se puede ver en \cite{Mata2014} ...
  296. %...
  297. %Como se puede ver en \cite[pag 3]{Mata2014}...
  298. %\end{lstlisting}
  299. %\end{frame}
  300. %%+++++++++++++++++++
  301. %\begin{frame}[plain]
  302. % \includegraphics[width=4.5in]{meme-1}
  303. %\end{frame}
  304. %%+++++++++++++++++++
  305. %%+++++++++++++++++++
  306. %%+++++++++++++++++++
  307. %%+++++++++++++++++++
  308. %%Bibliography:
  309. %\begin{thebibliography}{10}
  310. %
  311. %\bibitem{guiaLatex2014}[Nokyotsu, 2014]
  312. %http://nokyotsu.com.
  313. %\newblock LaTeX Fácil: Guía rápida de \LaTeX
  314. %
  315. %\bibitem{documentoLaTeX2014}[Guía de \LaTeX, 2014]
  316. %http://thales.cica.es
  317. %\newblock Guía para la configuración de documentos de \LaTeX.
  318. %
  319. %\bibitem{Moser2013}[Moser, 2013]
  320. %\newblock How to typeset equations in \LaTeX.
  321. %
  322. %\bibitem{Reckdahl2006}[Reckdahl K., 2006]
  323. %\newblock Using imported graphics in \LaTeX{} and PDF\LaTeX{}.
  324. %
  325. %\bibitem{Hunninger2012}[Hünninger D., 2012]
  326. %\newblock \LaTeX{} a Wikibook, www.wikibooks.org
  327. %
  328. %\bibitem{Mata2014}[Mata-Pérez M., 2014]
  329. %\newblock Bibliografía en \LaTeX{}, una guía concisa de BIB\TeX{}.
  330. %
  331. %\end{thebibliography}
  332. %+++++++++++++++++++
  333. \end{document}
  334. %%% Local Variables:
  335. %%% mode: latex
  336. %%% TeX-master: t
  337. %%% End: