Latex course for IAS IEEE branch
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.

375 lines
11 KiB

  1. % Presentación del Curso de LaTeX preparado para
  2. % el ITVM, del 20 al 24 de enero del 2020
  3. % Gerardo Marx Chávez-Campos
  4. %--------------------------------
  5. \documentclass[gray]{beamer}
  6. %\usetheme{Darmstadt}
  7. \usetheme{Warsaw}
  8. %\usecolortheme{seahorse}
  9. \setbeamercovered{transparent}
  10. %Librerías requeridas
  11. \usepackage[spanish]{babel}
  12. \usepackage[utf8]{inputenc}
  13. \usepackage{graphicx}
  14. \usepackage{hyperref}
  15. \usepackage{color}
  16. \usepackage{xcolor}
  17. \usepackage{listings}
  18. \usepackage[compatibility=false]{caption}
  19. \DeclareCaptionFont{white}{\color{white}}
  20. \DeclareCaptionFormat{listing}{
  21. \colorbox{gray}{\parbox{\textwidth}{#1#2#3}}}
  22. \captionsetup[lstlisting]{
  23. format=listing,labelfont=white,textfont=white}
  24. \makeatletter
  25. \let\@@magyar@captionfix\relax
  26. \makeatother
  27. \usepackage{amssymb}
  28. %Configuración del código de ejemplo:
  29. \lstset{numbers=left, numberstyle=\tiny\color{gray}, numbersep=5pt, stepnumber=1,language=[LaTeX]TeX,basicstyle=\footnotesize}
  30. \renewcommand{\lstlistingname}{Código}% Listing -> Ejemplo
  31. % ---------
  32. %Variables globales
  33. \graphicspath{
  34. {figures/}
  35. }
  36. \title[Redacción de Artículos]{Redacción de
  37. Artículos Científicos con \LaTeX}
  38. \author[gmarx\_cc@itmorelia.edu.mx]{Gerardo Marx Chávez Campos}
  39. \institute[ITM]{Instituto Tecnológico de Morelia: Posgrado en Electrónica}
  40. \begin{document}
  41. %----Portada:
  42. \begin{frame}[plain]
  43. \titlepage
  44. \end{frame}
  45. %======= Día 1 =========
  46. \section{Día 1:Introducción}
  47. \subsection{¿Qué es \LaTeX?}
  48. %+++++++++++++++++++
  49. \begin{frame}
  50. \frametitle{¿Qué es \LaTeX?}
  51. \begin{itemize}
  52. \item {\bfseries ¿Qué es \LaTeX?} \LaTeX{}
  53. es un sistema de preparación de
  54. documentos con \textbf{alta calidad y
  55. bien estructurados}\footnote{\tiny{\LaTeX{}
  56. fue creado por Donald Knuth en 1978}}.
  57. \item Con él puedes preparar especialmente
  58. manuscritos, \textbf{artículos científicos},
  59. cartas, tesis, presentaciones; gran
  60. soporte para generar fórmulas.
  61. \item \textbf{No es} un procesador de texto
  62. como MS-Word.
  63. \item \textbf{¿Porqué debería de usar
  64. \LaTeX?} Reproducibilidad,
  65. portabilidad y calidad; sin preocuparme
  66. de como se ven el documento final.
  67. \end{itemize}
  68. \end{frame}
  69. %+++++++++++++++++++
  70. \begin{frame}
  71. \frametitle{¿Cómo puedo probar \LaTeX{}?}
  72. \begin{itemize}
  73. \item <1->\textbf{GUI}:
  74. \TeX{}Studio(Windows, MacOS, Linux);
  75. \TeX{}Maker(All); ...
  76. \item<2-> \textbf{Distribución}: Mik\TeX{}, Mac\TeX{}, \TeX{}Live
  77. \item<3-> \textbf{Online tools}: Share-\LaTeX{},
  78. Overleaf, ...
  79. \end{itemize}
  80. \end{frame}
  81. % +++++++++++++++++++
  82. % Cuenta de LaTeXoverleaf:
  83. \begin{frame}{Manos a la obra - Overleaf}
  84. \begin{figure}
  85. \centering
  86. \includegraphics[width=0.7\textwidth]{doh}
  87. \caption{Esperemos que la computadora no explote...}
  88. \end{figure}
  89. \end{frame}
  90. % +++++++++++++++++++
  91. %---First example:
  92. \subsection{Estructura de un documento}
  93. \begin{frame}[containsverbatim]
  94. \frametitle{Primer documento en \LaTeX}
  95. %\ejemplo1
  96. Realicemos un primer documento para probar que las herramientas funcionan correctamente.
  97. \begin{lstlisting}[label=ejemplo1,caption=Hola mundo]
  98. \documentclass{article}
  99. \begin{document}
  100. Hola mundo
  101. \end{document}
  102. \end{lstlisting}
  103. \end{frame}
  104. % +++++++++++++++++++
  105. %Ejemplo 2:
  106. \begin{frame}[containsverbatim]
  107. \frametitle{Preámbulo y cuerpo}
  108. \begin{itemize}
  109. \item Un documento en \LaTeX{} está
  110. compuesto por dos partes fundamentales:
  111. \textbf{el preámbulo} (librerías) y
  112. \textbf{el cuerpo} del texto
  113. (código)[documentoLaTeX2014].
  114. \item El preámbulo contiene indicaciones
  115. generales que afectan a la totalidad del
  116. documento; su formato.
  117. \end{itemize}
  118. \begin{lstlisting}[caption=Ejemplo de
  119. preámbulo]
  120. \documentclass[opciones]{clase}
  121. \usepackage[opciones]{paquete}
  122. \title{Nombre-Documento}
  123. ...
  124. \end{lstlisting}
  125. Hay diversidad de clases de documentos
  126. (\textbf{article, book, report}) y paquetes.
  127. \end{frame}
  128. % +++++++++++++++++++
  129. \begin{frame}[containsverbatim]
  130. Mientras que el cuerpo del documento se
  131. encuentra entre las siguientes líneas de
  132. código:
  133. \begin{lstlisting}[caption=Ejemplo]
  134. \begin{document}
  135. \section{nombreSec1}
  136. \section{nombreSec2}
  137. \section{nombreSec3}
  138. ...
  139. \end{document}
  140. \end{lstlisting}
  141. \textit{Note que para contener el cuerpo del
  142. documento utilizamos un \textbf{entorno.}
  143. }\end{frame}
  144. % +++++++++++++++++++
  145. %clases y paquetes
  146. \subsection{Clases y paquetes básicos}
  147. \begin{frame}
  148. \frametitle{Clases}
  149. Las clases son obligatorias para cada
  150. documento.\textbf{ Pero solo puede ser usada una en
  151. cada documento.}
  152. Los más comunes son:
  153. \begin{itemize}
  154. \item <1-> \textbf{book:} Para escribir libros.
  155. \textit{Estructura el documento en partes,
  156. capítulos, secciones, subsecciones, etc.
  157. }\item <2->\textbf{article:} Se utiliza para
  158. escribir artículos. \textit{Estructura el documento
  159. en secciones, subsecciones, parrafos, etc.
  160. }\item <3->\textbf{report:} Para escribir
  161. informes, es parecido al anterior.
  162. \item <4->\textbf{beamer:} Para hacer documentos
  163. para presentaciones/diapositivas.
  164. \item <5->\textbf{tikz-poster:}Para el
  165. desarrollo de posters.
  166. \end{itemize}
  167. \end{frame}
  168. % +++++++++++++++++++
  169. \begin{frame}
  170. \frametitle{Paquetes}
  171. Los paquetes son opcionales, pueden ser
  172. múltiples y usarse con cualquiera de las
  173. clases.\\
  174. \vspace{0.1in}
  175. Algunos de los paquetes básicos son:
  176. \begin{itemize}
  177. \item <1-> \textbf{babel:} Permite trabajar
  178. con múltiples idiomas. \textit{Siempre debe
  179. ser el primer paquete}.
  180. \item <2->\textbf{inputenc:} Permite especificar
  181. el tipo de codificación en los caracteres
  182. ingresados por el teclado.
  183. \item <3->\textbf{graphix.} Permite incluir gráficos y procesarlos.
  184. \end{itemize}
  185. \end{frame}
  186. %+++++++++++++++++++
  187. \begin{frame}
  188. \centering
  189. \includegraphics[width=3.2in]{phdRefreshments}\\
  190. \LARGE{Receso}
  191. \end{frame}
  192. %=*=*=*=*=*=*=*=*=*=*=*=*
  193. \subsection{Preparando un artículo}
  194. %Después del receso
  195. \begin{frame}
  196. \frametitle{Submitting - Envió de artículos}
  197. \begin{columns}
  198. \column{0.5\textwidth}
  199. \includegraphics[width=2.5in]{peer-review}
  200. \column{0.5\textwidth}
  201. \begin{itemize}
  202. \item<1-> Definir el tipo de artículo:
  203. congreso, capítulo, \textit{review},
  204. \textbf{JCR}, \textit{open-access}.
  205. \item<2-> Revisar lineamientos o guías:
  206. cada editorial tiene sus propias
  207. reglas y requisitos.
  208. \item<3-> Definir las secciones: en
  209. función de la editorial.
  210. \end{itemize}
  211. \end{columns}
  212. \end{frame}
  213. %+++++++++++++++++++
  214. \begin{frame}
  215. \frametitle{Selecccionando el tipo de
  216. artículo}
  217. \begin{columns}
  218. \column{0.5\textwidth}
  219. \includegraphics[width=2.5in]{elsevier-logo}
  220. \column{0.5\textwidth}
  221. \begin{itemize}
  222. \item<1-> \textbf{Regular papers}: Theoretical
  223. foundations and empirical evidence to
  224. make a scientific contribution.
  225. \item<2-> \textbf{Review essays}:
  226. authoritative reviews of the
  227. literature, offering an updated and
  228. critical discussion of the state of
  229. the art.
  230. \item<3-> \textbf{Methodological insights}:
  231. on novel methods and significant
  232. improvements to conventional
  233. techniques
  234. \end{itemize}
  235. \end{columns}
  236. \end{frame}
  237. %+++++++++++++++++++
  238. \begin{frame}
  239. \frametitle{Líneamientos editoriales}
  240. \begin{columns}
  241. \column{0.5\textwidth}
  242. \includegraphics[width=2.5in]{peer-review}
  243. \column{0.5\textwidth}
  244. \centering
  245. \href{../material/elsevier/1385-8947.pdf}{
  246. Chemical Engineering Journal \\
  247. Author Information Pack}
  248. \end{columns}
  249. \end{frame}
  250. %+++++++++++++++++++
  251. \begin{frame}
  252. \frametitle{Definición de las secciones}
  253. \begin{columns}
  254. \column{0.5\textwidth}
  255. \includegraphics[width=2.in]{structure}
  256. \column{0.5\textwidth}
  257. \begin{itemize}
  258. \item<1->Las secciones son normalmente
  259. las mismas en las editoriales
  260. \item<2->No deben de pasar de entre 5 a 7
  261. hojas, dos columnas
  262. \item<3-> Las imágenes son en blanco y
  263. negro
  264. \item<4->Contenido del artículo en texto
  265. plano e imágenes por separado
  266. \item<5-> ¿Qué escribir primero y cómo?
  267. \end{itemize}
  268. \end{columns}
  269. \end{frame}
  270. %======= Día 2 =========
  271. \section{Día 2: Sección Introducción }
  272. % +++++++++++++++++++
  273. \subsection{Revisando una introducción}
  274. \begin{frame}[plain]
  275. \frametitle{Introducción de ejemplo}
  276. \includegraphics[width=4.5in]{1introduction}
  277. \end{frame}
  278. %+++++++++++++++++++
  279. \begin{frame}[plain]
  280. \includegraphics[width=4.5in]{meme-1}
  281. \end{frame}
  282. %+++++++++++++++++++
  283. \subsection{Bibliografía}
  284. \begin{frame}{Entorno bibliografía}
  285. El entorno \texttt{thebibliography} es
  286. nativo de \LaTeX{} y puede preferirse
  287. cuando el documento \textbf{contendrá pocas citas
  288. bibliográficas}(menos de 20) o será un documento que
  289. pasará por la revisión de diversos
  290. autores\cite[pág 21]{Mata2014}. En la
  291. siguiente sección de código se muestra el
  292. entorno \texttt{thebibliography}.
  293. \end{frame}
  294. %+++++++++++++++++++
  295. \begin{frame}[containsverbatim]
  296. \begin{lstlisting}[caption=Entorno ]
  297. Preambulo
  298. ...
  299. \begin{document}
  300. ...
  301. \begin{thebibliography}{X}
  302. \bibitem{clave1} Texto de la referencia 1.
  303. \bibitem{clave2} Texto de la referencia 2.
  304. \end{thebibliography}
  305. \end{document}
  306. \end{lstlisting}
  307. El argumento $X$ del entorno indica el
  308. número de entradas que habrá en el
  309. documento. Y cada entrada va acompañada del
  310. comando \texttt{$\backslash$bibitem}, el
  311. argumento (clave1) es una referencia para
  312. el usuario y se recomienda que sea el autor
  313. y el año, tal como se usa en el estilo de
  314. referencias tipo \textbf{Harvard}. El texto
  315. de la referencia debe usarse dependiendo
  316. del estilo de documento que se redacte.
  317. \end{frame}
  318. %+++++++++++++++++++
  319. \begin{frame}[containsverbatim]
  320. \frametitle{Citas bibliográficas}
  321. Para hacer una cita bibliográfica debe usarse la instrucción \texttt{$\backslash$cite} con la etiqueta correspondiente.
  322. \begin{lstlisting}[caption=Ejemplo de citas bibliográficas]
  323. Como se puede ver en \cite{Mata2014} ...
  324. ...
  325. Como se puede ver en \cite[pag 3]{Mata2014}...
  326. \end{lstlisting}
  327. \end{frame}
  328. %+++++++++++++++++++
  329. %+++++++++++++++++++
  330. %+++++++++++++++++++
  331. %+++++++++++++++++++
  332. %+++++++++++++++++++
  333. %Bibliography:
  334. \begin{thebibliography}{10}
  335. \bibitem{guiaLatex2014}[Nokyotsu, 2014]
  336. http://nokyotsu.com.
  337. \newblock LaTeX Fácil: Guía rápida de \LaTeX
  338. \bibitem{documentoLaTeX2014}[Guía de \LaTeX, 2014]
  339. http://thales.cica.es
  340. \newblock Guía para la configuración de documentos de \LaTeX.
  341. \bibitem{Moser2013}[Moser, 2013]
  342. \newblock How to typeset equations in \LaTeX.
  343. \bibitem{Reckdahl2006}[Reckdahl K., 2006]
  344. \newblock Using imported graphics in \LaTeX{} and PDF\LaTeX{}.
  345. \bibitem{Hunninger2012}[Hünninger D., 2012]
  346. \newblock \LaTeX{} a Wikibook, www.wikibooks.org
  347. \bibitem{Mata2014}[Mata-Pérez M., 2014]
  348. \newblock Bibliografía en \LaTeX{}, una guía concisa de BIB\TeX{}.
  349. \end{thebibliography}
  350. %+++++++++++++++++++
  351. \end{document}