diff --git a/Articulso cientificos en latex.pdf b/Articulso cientificos en latex.pdf deleted file mode 100644 index 4dca2c8..0000000 Binary files a/Articulso cientificos en latex.pdf and /dev/null differ diff --git a/Articulso cientificos en latex.tex b/Articulso cientificos en latex.tex deleted file mode 100644 index eb77eba..0000000 --- a/Articulso cientificos en latex.tex +++ /dev/null @@ -1,261 +0,0 @@ -%Presentación del Curso de LaTeX preparado para -%el ITM, 19 a 23 de enero 2015 -%-------------------------------- -\documentclass{beamer} - -\usetheme{Darmstadt} -%\usecolortheme{seahorse} -\setbeamercovered{transparent} -%Librerías requeridas -\usepackage[spanish]{babel} -\usepackage[utf8]{inputenc} -\usepackage{graphicx} -%\usepackage{multicol} -\usepackage{color} -\usepackage{listings} -\usepackage{subfig} -\usepackage{booktabs} -%Configuración del código de ejemplo: -\lstset{frame=single, language=[LaTeX]TeX} -%numbers=left, numberstyle=\tiny\color{gray}, numbersep=5pt, stepnumber=2, - - - -%Variables globales -\graphicspath{imagenes/} -\title[How to use IEEEtran]{How to use IEEEtran \LaTeX\, class} -\author[Gerardo Marx]{ -José Antonio Gutiérrez Gnecchi,\\ -Gerardo Marx Chávez Campos} -\institute[Tec. Morelia]{Instituto Tecnológico de Morelia\\ -Posgrado de electrónica} - -\begin{document} - -%----Portada: -\begin{frame} -\titlepage -\end{frame} - -%---------- -\section{LaTeX 101} -\subsection{What the heck is LaTeX?} -\begin{frame}{\LaTeX{} 101} -\begin{block}{What the heck is \LaTeX?} -\LaTeX{} is a document preparation system for high-quality typesetting. It is most often used for medium-to-large technical or scientific documents but it can be used for almost any form of publishing. - -\LaTeX{} is not a word processor! Instead, \LaTeX{} encourages authors not to worry too much about the appearance of their documents but to concentrate on getting the right content\cite{latexProject}. -\end{block} - -\begin{block}{Why should I use \LaTeX?} -There are many other conventional options like Microsoft Word, \LaTeX can easily adapt and develop new command, environment or stencil to be used in mathematics, chemistry, physics, music and other fields \cite{guiaLatex2014}. -\end{block} -\end{frame} -%Instalación: - -\subsection{Installing \LaTeX}%----TexWorks: -\begin{frame}{Installing \LaTeX} -Follow the next steps to get a proper working \TeX Works -\begin{enumerate} -\item Install basic Mike\TeX, -\item Install \TeX Works -\end{enumerate} -\vspace{1cm} -\centering -\textbf{or just create a Overleaf account!} -\end{frame} - -%---------Estructura -\subsection{Document structure} -\begin{frame}[containsverbatim] -\frametitle{Document structure} -A \LaTeX{} document has two main parts: preamble and body\cite{documentoLaTeX2014}.\\ - -The preamble contains general configuration that modifies entire document, commonly are the first lines of code and looks like: -\begin{lstlisting}[keywordstyle=\color{blue}] -\documentclass[options]{documentclass} -\usepackage[opciones]{package} -... -\end{lstlisting} -The body always is between the next code environment: -\begin{lstlisting}[keywordstyle=\color{blue}] -\begin{document} -- Put your code here - -\end{document} -\end{lstlisting} -\end{frame} - - -%--------- -\subsection{Class option} -\begin{frame}[containsverbatim] -\frametitle{IEEE class} - There are a number of class options that can be used to control the overall mode and behavior of IEEEtran, e.g. -\begin{lstlisting}[keywordstyle=\color{blue}] -\documentclass[9pt,draft]{IEEEtran} -\usepackage{amsmath} -\usepackage{lipsum} -\usepackage[utf8]{inputenc} -\usepackage[spanish]{babel} -... -\end{lstlisting} -\end{frame} - - -%--------- -\section{The title page} -\subsection{Paper title} -\begin{frame}[containsverbatim] -\frametitle{Paper title} - Titles are generally capitalized except for words such as a, an, and, as, at, but, by, for, in, nor, of, on, or, the, to and up, which are usually not capitalized unless they are the first or last word of the title. Line breaks ($\backslash \backslash $) may be used to equalize the length of the title lines. Do not use math or other special symbols in the title. - -\begin{lstlisting}[keywordstyle=\color{blue}] -\documentclass[9pt,draft]{IEEEtran} -\usepackage{amsmath} -\usepackage{lipsum} -\usepackage[utf8]{inputenc} -\usepackage[spanish]{babel} -\title{How to Use the IEEEtran \LaTeX{} Class} -... -\end{lstlisting} -\end{frame} - -%--------- -\subsection{Author names} -\begin{frame}[containsverbatim] -\frametitle{Author names} -The name and associated information is declared with the $\backslash $ author command. - -\begin{lstlisting}[keywordstyle=\color{blue}] -\documentclass[9pt,draft]{IEEEtran} -\usepackage{amsmath} -\usepackage{lipsum} -\usepackage[utf8]{inputenc} -\usepackage[spanish]{babel} -\title{How to Use the IEEEtran \LaTeX{} Class} -\author{Chavez-Campos~Gerardo~Marx, -~\IEEEmembership{Member,~IEEE.}% -\thanks{This work was supported by the IEEE.}} -\begin{document} -\maketitle -\end{document} -\end{lstlisting} -\end{frame} - -%--------- -\subsection{Abstract and index terms} -\begin{frame}[containsverbatim] -\frametitle{Abstract} -The abstract is generally the first part of a paper after $\backslash$ maketitle. The abstract text is placed within the abstract environment: -\begin{lstlisting}[keywordstyle=\color{blue}] -\documentclass[options]{IEEEtran} -- Preamble - -\begin{document} -\maketitle -\begin{abstract} Put here your abstract ... \end{abstract} -\end{document} -\end{lstlisting} -Math, special symbols and/or citations should generally not be used in abstracts -\end{frame} - - -\begin{frame}[containsverbatim] -\frametitle{Index terms} -Journal and technote papers also have a list of key words (index terms) which can be declared with: -\begin{lstlisting}[keywordstyle=\color{blue}] -\begin{IEEEkeywords} Broad band networks, quality of service, WDM. \end{IEEEkeywords} -\end{lstlisting} -\end{frame} - -%--------- -\section{Sections and initial drop capital letter} -\subsection{Sections} -\begin{frame}[containsverbatim] -Sections and their headings are declared in the usual LATEX fashion via $\backslash$section, $\backslash$subsection, $\backslash$subsubsection, and $\backslash$paragraph. - -While the first letter of a journal paper is a large, capital, oversized letter which descends one line below the baseline. - -\begin{lstlisting}[keywordstyle=\color{blue}] -- Body of document - -\section{Introduction} \IEEEPARstart{T}{he} LED technology ... ... -\end{lstlisting} -\end{frame} - -%--------- -\section{Some useful environments} -\subsection{Math} -\begin{frame}[containsverbatim] -\frametitle{Equation and eqref} -Equations are created using the traditional equation environment: - -\begin{lstlisting}[keywordstyle=\color{blue}] -- Body of document - -\begin{equation} \label{eqn_example} x = \sum\limits_{i=0}^{z} 2^{i}Q \end{equation} - -... as can seen in \eqref{eqn_example} ... -\end{lstlisting} -\end{frame} - -%----------- - -\subsection{Figures} -\begin{frame}[containsverbatim] - -\begin{lstlisting}[keywordstyle=\color{blue}] -- Body of document - -\figurename \ref{fig:sim} - -\begin{figure}[!t] \centering \includegraphics[width=2.5in]{myfigure} \caption{Simulation results for the network.} \label{fig:sim} \end{figure} -\end{lstlisting} -\end{frame} - - - - -\subsection{Tables} - -\begin{frame}[containsverbatim] - -\begin{lstlisting}[keywordstyle=\color{blue}] -- Body of document - -\tablename \label{tb:example} - -\begin{table}[!t] \renewcommand{\arraystretch}{1.3} \caption{A Simple Example Table} \label{tb:example} \centering \begin{tabular}{c||c} \hline \bfseries First & \bfseries Next\\ \hline\hline 1.0 & 2.0\\ \hline \end{tabular} \end{table} -\end{lstlisting} -\end{frame} - - -\subsection{List} -\begin{frame}[containsverbatim] - -\begin{lstlisting}[keywordstyle=\color{blue}] -- Body of document - - - \begin{itemize}[\IEEEsetlabelwidth{Z}] \item[X] blah \item[Y] blah . . \end{itemize} - -\end{lstlisting} -\end{frame} - -\section{End sections} -\subsection{Biblioagraphy} -\subsection{Biographies} - - - -%Bibliography: -\begin{thebibliography}{10} - -\bibitem{latexProject}[\LaTeX{} project, 2015] -http://latex-project.org -\newblock An introduction to \LaTeX{}, a document preparation system. - -\bibitem{guiaLatex2014}[Nokyotsu, 2014] -http://nokyotsu.com. -\newblock LaTeX Fácil: Guía rápida de \LaTeX - - - -\end{thebibliography} - - -\end{document} \ No newline at end of file diff --git a/MATERIAL DEL CURSO/00_LaTeX.pdf b/MATERIAL DEL CURSO/00_LaTeX.pdf deleted file mode 100644 index 4dca2c8..0000000 Binary files a/MATERIAL DEL CURSO/00_LaTeX.pdf and /dev/null differ diff --git a/MATERIAL DEL CURSO/01_ELSEVIER_Get-Published-Quick-Guide.pdf b/MATERIAL DEL CURSO/01_ELSEVIER_Get-Published-Quick-Guide.pdf deleted file mode 100644 index 6218e26..0000000 Binary files a/MATERIAL DEL CURSO/01_ELSEVIER_Get-Published-Quick-Guide.pdf and /dev/null differ diff --git a/MATERIAL DEL CURSO/02_springer_Statement Article types and Guidelines for Special Issues.pdf b/MATERIAL DEL CURSO/02_springer_Statement Article types and Guidelines for Special Issues.pdf deleted file mode 100644 index 75a4b70..0000000 Binary files a/MATERIAL DEL CURSO/02_springer_Statement Article types and Guidelines for Special Issues.pdf and /dev/null differ diff --git a/MATERIAL DEL CURSO/03_IEEE_style_manual.pdf b/MATERIAL DEL CURSO/03_IEEE_style_manual.pdf deleted file mode 100644 index 025ebd0..0000000 Binary files a/MATERIAL DEL CURSO/03_IEEE_style_manual.pdf and /dev/null differ diff --git a/MATERIAL DEL CURSO/04_IEEE_trans_journal_names.pdf b/MATERIAL DEL CURSO/04_IEEE_trans_journal_names.pdf deleted file mode 100644 index cef05bb..0000000 Binary files a/MATERIAL DEL CURSO/04_IEEE_trans_journal_names.pdf and /dev/null differ diff --git a/MATERIAL DEL CURSO/05_IEEE_KEYWORDS_taxonomy_v101.pdf b/MATERIAL DEL CURSO/05_IEEE_KEYWORDS_taxonomy_v101.pdf deleted file mode 100644 index 485447e..0000000 Binary files a/MATERIAL DEL CURSO/05_IEEE_KEYWORDS_taxonomy_v101.pdf and /dev/null differ diff --git a/MATERIAL DEL CURSO/06_IEEE_TEMPLATE INSTRUCTIONS_trans_jour.docx b/MATERIAL DEL CURSO/06_IEEE_TEMPLATE INSTRUCTIONS_trans_jour.docx deleted file mode 100644 index e292c7f..0000000 Binary files a/MATERIAL DEL CURSO/06_IEEE_TEMPLATE INSTRUCTIONS_trans_jour.docx and /dev/null differ diff --git a/MATERIAL DEL CURSO/07_INSTRUCTIONS_ONLY_transactions_journals.pdf b/MATERIAL DEL CURSO/07_INSTRUCTIONS_ONLY_transactions_journals.pdf deleted file mode 100644 index 004ebd1..0000000 Binary files a/MATERIAL DEL CURSO/07_INSTRUCTIONS_ONLY_transactions_journals.pdf and /dev/null differ diff --git a/MATERIAL DEL CURSO/EJEMPLO_01A_CORRECCION ENVIADA WARM-D-13-00762 (1).pdf b/MATERIAL DEL CURSO/EJEMPLO_01A_CORRECCION ENVIADA WARM-D-13-00762 (1).pdf deleted file mode 100644 index 32e654a..0000000 Binary files a/MATERIAL DEL CURSO/EJEMPLO_01A_CORRECCION ENVIADA WARM-D-13-00762 (1).pdf and /dev/null differ diff --git a/MATERIAL DEL CURSO/EJEMPLO_01B_INSTRUCCIONES PARA AUTORES.pdf b/MATERIAL DEL CURSO/EJEMPLO_01B_INSTRUCCIONES PARA AUTORES.pdf deleted file mode 100644 index 12c593f..0000000 Binary files a/MATERIAL DEL CURSO/EJEMPLO_01B_INSTRUCCIONES PARA AUTORES.pdf and /dev/null differ diff --git a/MATERIAL DEL CURSO/Escritura de Art°culos para Publicaciones Internacionales_VER_ASISTENTES.pdf b/MATERIAL DEL CURSO/Escritura de Art°culos para Publicaciones Internacionales_VER_ASISTENTES.pdf deleted file mode 100644 index 08eccee..0000000 Binary files a/MATERIAL DEL CURSO/Escritura de Art°culos para Publicaciones Internacionales_VER_ASISTENTES.pdf and /dev/null differ diff --git a/MATERIAL DEL CURSO/Journals+Collection+Title+List+2015.xlsx b/MATERIAL DEL CURSO/Journals+Collection+Title+List+2015.xlsx deleted file mode 100644 index 3ca922f..0000000 Binary files a/MATERIAL DEL CURSO/Journals+Collection+Title+List+2015.xlsx and /dev/null differ diff --git a/beamer/1introduction.jpg b/beamer/1introduction.jpg new file mode 100644 index 0000000..3c1e3f0 Binary files /dev/null and b/beamer/1introduction.jpg differ diff --git a/beamer/articulos-latex.pdf b/beamer/articulos-latex.pdf new file mode 100644 index 0000000..91a4365 Binary files /dev/null and b/beamer/articulos-latex.pdf differ diff --git a/beamer/articulos-latex.tex b/beamer/articulos-latex.tex new file mode 100644 index 0000000..db4bc4f --- /dev/null +++ b/beamer/articulos-latex.tex @@ -0,0 +1,376 @@ +% Presentación del Curso de LaTeX preparado para +% el ITVM, del 20 al 24 de enero del 2020 +% Gerardo Marx Chávez-Campos +%-------------------------------- +\documentclass[gray]{beamer} +%\usetheme{Darmstadt} +\usetheme{Warsaw} +%\usecolortheme{seahorse} +\setbeamercovered{transparent} +%Librerías requeridas +\usepackage[spanish]{babel} +\usepackage[utf8]{inputenc} +\usepackage{graphicx} +\usepackage{hyperref} +\usepackage{color} +\usepackage{xcolor} +\usepackage{listings} +\usepackage[compatibility=false]{caption} +\DeclareCaptionFont{white}{\color{white}} +\DeclareCaptionFormat{listing}{ + \colorbox{gray}{\parbox{\textwidth}{#1#2#3}}} +\captionsetup[lstlisting]{ + format=listing,labelfont=white,textfont=white} +\makeatletter +\let\@@magyar@captionfix\relax +\makeatother +\usepackage{amssymb} +%Configuración del código de ejemplo: +\lstset{numbers=left, numberstyle=\tiny\color{gray}, numbersep=5pt, stepnumber=1,language=[LaTeX]TeX,basicstyle=\footnotesize} +\renewcommand{\lstlistingname}{Código}% Listing -> Ejemplo +% --------- + + +%Variables globales +\graphicspath{ + {figures/} +} +\title[Redacción de Artículos]{Redacción de + Artículos Científicos con \LaTeX} +\author[gmarx\_cc@itmorelia.edu.mx]{Gerardo Marx Chávez Campos} +\institute[ITM]{Instituto Tecnológico de Morelia: Posgrado en Electrónica} + +\begin{document} +%----Portada: +\begin{frame}[plain] + \titlepage +\end{frame} +%======= Día 1 ========= +\section{Día 1:Introducción} +\subsection{¿Qué es \LaTeX?} +%+++++++++++++++++++ +\begin{frame} + \frametitle{¿Qué es \LaTeX?} + \begin{itemize} + \item {\bfseries ¿Qué es \LaTeX?} \LaTeX{} + es un sistema de preparación de + documentos con \textbf{alta calidad y + bien estructurados}\footnote{\tiny{\LaTeX{} + fue creado por Donald Knuth en 1978}}. + + \item Con él puedes preparar especialmente + manuscritos, \textbf{artículos científicos}, + cartas, tesis, presentaciones; gran + soporte para generar fórmulas. + + \item \textbf{No es} un procesador de texto + como MS-Word. + \item \textbf{¿Porqué debería de usar + \LaTeX?} Reproducibilidad, + portabilidad y calidad; sin preocuparme + de como se ven el documento final. +\end{itemize} +\end{frame} +%+++++++++++++++++++ +\begin{frame} + \frametitle{¿Cómo puedo probar \LaTeX{}?} + \begin{itemize} + \item <1->\textbf{GUI}: + \TeX{}Studio(Windows, MacOS, Linux); + \TeX{}Maker(All); ... + + \item<2-> \textbf{Distribución}: Mik\TeX{}, Mac\TeX{}, \TeX{}Live + \item<3-> \textbf{Online tools}: Share-\LaTeX{}, + Overleaf, ... + \end{itemize} +\end{frame} +% +++++++++++++++++++ +% Cuenta de LaTeXoverleaf: +\begin{frame}{Manos a la obra - Overleaf} + \begin{figure} + \centering + \includegraphics[width=0.7\textwidth]{doh} + \caption{Esperemos que la computadora no explote...} + \end{figure} +\end{frame} +% +++++++++++++++++++ +%---First example: +\subsection{Estructura de un documento} +\begin{frame}[containsverbatim] +\frametitle{Primer documento en \LaTeX} +%\ejemplo1 +Realicemos un primer documento para probar que las herramientas funcionan correctamente. + \begin{lstlisting}[label=ejemplo1,caption=Hola mundo] + \documentclass{article} + \begin{document} + Hola mundo + \end{document} + \end{lstlisting} +\end{frame} +% +++++++++++++++++++ +%Ejemplo 2: +\begin{frame}[containsverbatim] + \frametitle{Preámbulo y cuerpo} +\begin{itemize} + \item Un documento en \LaTeX{} está + compuesto por dos partes fundamentales: + \textbf{el preámbulo} (librerías) y + \textbf{el cuerpo} del texto + (código)[documentoLaTeX2014]. + \item El preámbulo contiene indicaciones + generales que afectan a la totalidad del + documento; su formato. + \end{itemize} +\begin{lstlisting}[caption=Ejemplo de +preámbulo] +\documentclass[opciones]{clase} +\usepackage[opciones]{paquete} +\title{Nombre-Documento} + ... +\end{lstlisting} + + Hay diversidad de clases de documentos + (\textbf{article, book, report}) y paquetes. +\end{frame} +% +++++++++++++++++++ +\begin{frame}[containsverbatim] + Mientras que el cuerpo del documento se + encuentra entre las siguientes líneas de + código: + \begin{lstlisting}[caption=Ejemplo] + \begin{document} + \section{nombreSec1} + \section{nombreSec2} + \section{nombreSec3} + ... + \end{document} + \end{lstlisting} + + \textit{Note que para contener el cuerpo del + documento utilizamos un \textbf{entorno.} +}\end{frame} +% +++++++++++++++++++ +%clases y paquetes +\subsection{Clases y paquetes básicos} +\begin{frame} +\frametitle{Clases} +Las clases son obligatorias para cada +documento.\textbf{ Pero solo puede ser usada una en +cada documento.} + +Los más comunes son: +\begin{itemize} +\item <1-> \textbf{book:} Para escribir libros. + \textit{Estructura el documento en partes, + capítulos, secciones, subsecciones, etc. + }\item <2->\textbf{article:} Se utiliza para + escribir artículos. \textit{Estructura el documento + en secciones, subsecciones, parrafos, etc. + }\item <3->\textbf{report:} Para escribir + informes, es parecido al anterior. + \item <4->\textbf{beamer:} Para hacer documentos + para presentaciones/diapositivas. + \item <5->\textbf{tikz-poster:}Para el + desarrollo de posters. +\end{itemize} +\end{frame} +% +++++++++++++++++++ +\begin{frame} +\frametitle{Paquetes} +Los paquetes son opcionales, pueden ser +múltiples y usarse con cualquiera de las +clases.\\ +\vspace{0.1in} +Algunos de los paquetes básicos son: + \begin{itemize} + \item <1-> \textbf{babel:} Permite trabajar + con múltiples idiomas. \textit{Siempre debe + ser el primer paquete}. +\item <2->\textbf{inputenc:} Permite especificar + el tipo de codificación en los caracteres + ingresados por el teclado. + \item <3->\textbf{graphix.} Permite incluir gráficos y procesarlos. + \end{itemize} + \end{frame} +%+++++++++++++++++++ + \begin{frame} + \centering + \includegraphics[width=3.2in]{phdRefreshments}\\ + + \LARGE{Receso} + \end{frame} +%=*=*=*=*=*=*=*=*=*=*=*=* +\subsection{Preparando un artículo} +%Después del receso + \begin{frame} + \frametitle{Submitting - Envió de artículos} + \begin{columns} + \column{0.5\textwidth} + \includegraphics[width=2.5in]{peer-review} + \column{0.5\textwidth} + \begin{itemize} + \item<1-> Definir el tipo de artículo: + congreso, capítulo, \textit{review}, + \textbf{JCR}, \textit{open-access}. + \item<2-> Revisar lineamientos o guías: + cada editorial tiene sus propias + reglas y requisitos. + \item<3-> Definir las secciones: en + función de la editorial. + \end{itemize} + \end{columns} + \end{frame} +%+++++++++++++++++++ + \begin{frame} + \frametitle{Selecccionando el tipo de + artículo} + \begin{columns} + \column{0.5\textwidth} + \includegraphics[width=2.5in]{elsevier-logo} + \column{0.5\textwidth} + \begin{itemize} + \item<1-> \textbf{Regular papers}: Theoretical + foundations and empirical evidence to + make a scientific contribution. + \item<2-> \textbf{Review essays}: + authoritative reviews of the + literature, offering an updated and + critical discussion of the state of + the art. + \item<3-> \textbf{Methodological insights}: + on novel methods and significant + improvements to conventional + techniques + \end{itemize} + \end{columns} + \end{frame} +%+++++++++++++++++++ + \begin{frame} + \frametitle{Líneamientos editoriales} + \begin{columns} + \column{0.5\textwidth} + \includegraphics[width=2.5in]{peer-review} + \column{0.5\textwidth} + \centering + \href{../material/elsevier/1385-8947.pdf}{ + Chemical Engineering Journal \\ + Author Information Pack} + \end{columns} + \end{frame} +%+++++++++++++++++++ + \begin{frame} + \frametitle{Definición de las secciones} + \begin{columns} + \column{0.5\textwidth} + \includegraphics[width=2.in]{structure} + \column{0.5\textwidth} + \begin{itemize} + \item<1->Las secciones son normalmente + las mismas en las editoriales + \item<2->No deben de pasar de entre 5 a 7 + hojas, dos columnas + \item<3-> Las imágenes son en blanco y + negro + \item<4->Contenido del artículo en texto + plano e imágenes por separado + \item<5-> ¿Qué escribir primero y cómo? + \end{itemize} + \end{columns} + \end{frame} +%======= Día 2 ========= +\section{Día 2: Sección Introducción } +% +++++++++++++++++++ +\subsection{Revisando una introducción} +\begin{frame}[plain] + \frametitle{Introducción de ejemplo} + \includegraphics[width=4.5in]{1introduction} +\end{frame} + +%+++++++++++++++++++ +\begin{frame}[plain] + \includegraphics[width=4.5in]{meme-1} +\end{frame} +%+++++++++++++++++++ +\subsection{Bibliografía} +\begin{frame}{Entorno bibliografía} + El entorno \texttt{thebibliography} es + nativo de \LaTeX{} y puede preferirse + cuando el documento \textbf{contendrá pocas citas + bibliográficas}(menos de 20) o será un documento que + pasará por la revisión de diversos + autores\cite[pág 21]{Mata2014}. En la + siguiente sección de código se muestra el + entorno \texttt{thebibliography}. +\end{frame} + +%+++++++++++++++++++ +\begin{frame}[containsverbatim] +\begin{lstlisting}[caption=Entorno ] +Preambulo +... +\begin{document} +... +\begin{thebibliography}{X} +\bibitem{clave1} Texto de la referencia 1. +\bibitem{clave2} Texto de la referencia 2. +\end{thebibliography} +\end{document} +\end{lstlisting} + El argumento $X$ del entorno indica el + número de entradas que habrá en el + documento. Y cada entrada va acompañada del + comando \texttt{$\backslash$bibitem}, el + argumento (clave1) es una referencia para + el usuario y se recomienda que sea el autor + y el año, tal como se usa en el estilo de + referencias tipo \textbf{Harvard}. El texto + de la referencia debe usarse dependiendo + del estilo de documento que se redacte. +\end{frame} +%+++++++++++++++++++ + +\begin{frame}[containsverbatim] +\frametitle{Citas bibliográficas} +Para hacer una cita bibliográfica debe usarse la instrucción \texttt{$\backslash$cite} con la etiqueta correspondiente. + +\begin{lstlisting}[caption=Ejemplo de citas bibliográficas] +Como se puede ver en \cite{Mata2014} ... +... +Como se puede ver en \cite[pag 3]{Mata2014}... +\end{lstlisting} +\end{frame} + +%+++++++++++++++++++ + +%+++++++++++++++++++ +%+++++++++++++++++++ +%+++++++++++++++++++ +%+++++++++++++++++++ +%Bibliography: +\begin{thebibliography}{10} + +\bibitem{guiaLatex2014}[Nokyotsu, 2014] +http://nokyotsu.com. +\newblock LaTeX Fácil: Guía rápida de \LaTeX + +\bibitem{documentoLaTeX2014}[Guía de \LaTeX, 2014] +http://thales.cica.es +\newblock Guía para la configuración de documentos de \LaTeX. + +\bibitem{Moser2013}[Moser, 2013] +\newblock How to typeset equations in \LaTeX. + +\bibitem{Reckdahl2006}[Reckdahl K., 2006] +\newblock Using imported graphics in \LaTeX{} and PDF\LaTeX{}. + +\bibitem{Hunninger2012}[Hünninger D., 2012] +\newblock \LaTeX{} a Wikibook, www.wikibooks.org + +\bibitem{Mata2014}[Mata-Pérez M., 2014] +\newblock Bibliografía en \LaTeX{}, una guía concisa de BIB\TeX{}. + +\end{thebibliography} + +%+++++++++++++++++++ + +\end{document} \ No newline at end of file diff --git a/beamer/articulos-latex.vrb b/beamer/articulos-latex.vrb new file mode 100644 index 0000000..363b9d9 --- /dev/null +++ b/beamer/articulos-latex.vrb @@ -0,0 +1,9 @@ +\frametitle{Primer documento en \LaTeX} +%\ejemplo1 +Realicemos un primer documento para probar que las herramientas funcionan correctamente. +% \begin{lstlisting}[label=ejemplo1,caption=Hola mundo] +% \documentclass{book} +% \begin{document} +% Hola mundo +% \end{document} +% \end{lstlisting} diff --git a/bibliografia.bib b/beamer/bibliografia.bib similarity index 100% rename from bibliografia.bib rename to beamer/bibliografia.bib diff --git a/beamer/elsevier-logo.png b/beamer/elsevier-logo.png new file mode 100644 index 0000000..59bd1ef Binary files /dev/null and b/beamer/elsevier-logo.png differ diff --git a/beamer/figures/35c4a4c4ebe04fc146c6ad93b49fe87c.gif b/beamer/figures/35c4a4c4ebe04fc146c6ad93b49fe87c.gif new file mode 100644 index 0000000..b4085ff Binary files /dev/null and b/beamer/figures/35c4a4c4ebe04fc146c6ad93b49fe87c.gif differ diff --git a/beamer/figures/dissertation-defense-phd-comics-statistics_1.jpg b/beamer/figures/dissertation-defense-phd-comics-statistics_1.jpg new file mode 100644 index 0000000..d951d95 Binary files /dev/null and b/beamer/figures/dissertation-defense-phd-comics-statistics_1.jpg differ diff --git a/beamer/figures/doh.jpg b/beamer/figures/doh.jpg new file mode 100644 index 0000000..5314f41 Binary files /dev/null and b/beamer/figures/doh.jpg differ diff --git a/beamer/figures/ea79232ee0cd292e6b03ee4d31f75a1d.gif b/beamer/figures/ea79232ee0cd292e6b03ee4d31f75a1d.gif new file mode 100644 index 0000000..d46c126 Binary files /dev/null and b/beamer/figures/ea79232ee0cd292e6b03ee4d31f75a1d.gif differ diff --git a/beamer/figures/image_large.jpeg b/beamer/figures/image_large.jpeg new file mode 100644 index 0000000..4fb1327 Binary files /dev/null and b/beamer/figures/image_large.jpeg differ diff --git a/beamer/figures/miktex.gif b/beamer/figures/miktex.gif new file mode 100644 index 0000000..fd0ce34 Binary files /dev/null and b/beamer/figures/miktex.gif differ diff --git a/beamer/figures/peer-review.jpg b/beamer/figures/peer-review.jpg new file mode 100644 index 0000000..fe416c4 Binary files /dev/null and b/beamer/figures/peer-review.jpg differ diff --git a/beamer/figures/phd+data.gif b/beamer/figures/phd+data.gif new file mode 100644 index 0000000..86768ef Binary files /dev/null and b/beamer/figures/phd+data.gif differ diff --git a/beamer/figures/phd021317s.gif b/beamer/figures/phd021317s.gif new file mode 100644 index 0000000..ebe6551 Binary files /dev/null and b/beamer/figures/phd021317s.gif differ diff --git a/beamer/figures/phd022318s.gif b/beamer/figures/phd022318s.gif new file mode 100644 index 0000000..ead634c Binary files /dev/null and b/beamer/figures/phd022318s.gif differ diff --git a/beamer/figures/phd070618s.gif b/beamer/figures/phd070618s.gif new file mode 100644 index 0000000..fc501ee Binary files /dev/null and b/beamer/figures/phd070618s.gif differ diff --git a/beamer/figures/phd091606s-2.gif b/beamer/figures/phd091606s-2.gif new file mode 100644 index 0000000..0c06aea Binary files /dev/null and b/beamer/figures/phd091606s-2.gif differ diff --git a/beamer/figures/phd091606s.gif b/beamer/figures/phd091606s.gif new file mode 100644 index 0000000..0c06aea Binary files /dev/null and b/beamer/figures/phd091606s.gif differ diff --git a/beamer/figures/phd091615s.gif b/beamer/figures/phd091615s.gif new file mode 100644 index 0000000..a37b08b Binary files /dev/null and b/beamer/figures/phd091615s.gif differ diff --git a/beamer/figures/phdRefreshments.jpg b/beamer/figures/phdRefreshments.jpg new file mode 100644 index 0000000..9f99afd Binary files /dev/null and b/beamer/figures/phdRefreshments.jpg differ diff --git a/beamer/figures/plagiarism.jpg b/beamer/figures/plagiarism.jpg new file mode 100644 index 0000000..3c6bfe0 Binary files /dev/null and b/beamer/figures/plagiarism.jpg differ diff --git a/beamer/figures/polylactideIntroduction.jpg b/beamer/figures/polylactideIntroduction.jpg new file mode 100644 index 0000000..3c1e3f0 Binary files /dev/null and b/beamer/figures/polylactideIntroduction.jpg differ diff --git a/beamer/figures/researchProposal.jpg b/beamer/figures/researchProposal.jpg new file mode 100644 index 0000000..85c4d3f Binary files /dev/null and b/beamer/figures/researchProposal.jpg differ diff --git a/beamer/figures/researchProposal.png b/beamer/figures/researchProposal.png new file mode 100644 index 0000000..dc9569e Binary files /dev/null and b/beamer/figures/researchProposal.png differ diff --git a/beamer/figures/thesis_writing.gif b/beamer/figures/thesis_writing.gif new file mode 100644 index 0000000..a08b5fd Binary files /dev/null and b/beamer/figures/thesis_writing.gif differ diff --git a/beamer/figures/touching.png b/beamer/figures/touching.png new file mode 100644 index 0000000..d487163 Binary files /dev/null and b/beamer/figures/touching.png differ diff --git a/beamer/meme-1.jpg b/beamer/meme-1.jpg new file mode 100644 index 0000000..521ed16 Binary files /dev/null and b/beamer/meme-1.jpg differ diff --git a/beamer/peer-review.png b/beamer/peer-review.png new file mode 100644 index 0000000..3dc639d Binary files /dev/null and b/beamer/peer-review.png differ diff --git a/beamer/springer-logo.jpg b/beamer/springer-logo.jpg new file mode 100644 index 0000000..8169a64 Binary files /dev/null and b/beamer/springer-logo.jpg differ diff --git a/beamer/structure.jpg b/beamer/structure.jpg new file mode 100644 index 0000000..24c12e1 Binary files /dev/null and b/beamer/structure.jpg differ diff --git a/Muestra/Boost_modo_1.png b/examples/ieee/Boost_modo_1.png similarity index 100% rename from Muestra/Boost_modo_1.png rename to examples/ieee/Boost_modo_1.png diff --git a/Muestra/Boost_modo_2.png b/examples/ieee/Boost_modo_2.png similarity index 100% rename from Muestra/Boost_modo_2.png rename to examples/ieee/Boost_modo_2.png diff --git a/Muestra/Boost_no_ideal.png b/examples/ieee/Boost_no_ideal.png similarity index 100% rename from Muestra/Boost_no_ideal.png rename to examples/ieee/Boost_no_ideal.png diff --git a/Muestra/How to use IEEEtran Latex class.pdf b/examples/ieee/How to use IEEEtran Latex class.pdf similarity index 100% rename from Muestra/How to use IEEEtran Latex class.pdf rename to examples/ieee/How to use IEEEtran Latex class.pdf diff --git a/Muestra/How to use IEEEtran Latex class.tex b/examples/ieee/How to use IEEEtran Latex class.tex similarity index 100% rename from Muestra/How to use IEEEtran Latex class.tex rename to examples/ieee/How to use IEEEtran Latex class.tex diff --git a/Muestra/fotoMarx.jpeg b/examples/ieee/fotoMarx.jpeg similarity index 100% rename from Muestra/fotoMarx.jpeg rename to examples/ieee/fotoMarx.jpeg diff --git a/Muestra/referencias.bib b/examples/ieee/referencias.bib similarity index 100% rename from Muestra/referencias.bib rename to examples/ieee/referencias.bib diff --git a/material/elsevier/1385-8947.pdf b/material/elsevier/1385-8947.pdf new file mode 100644 index 0000000..2c44676 Binary files /dev/null and b/material/elsevier/1385-8947.pdf differ diff --git a/material/elsevier/elsdoc-1.pdf b/material/elsevier/elsdoc-1.pdf new file mode 100644 index 0000000..3740ccf Binary files /dev/null and b/material/elsevier/elsdoc-1.pdf differ diff --git a/material/latex-clase1.pdf b/material/latex-clase1.pdf new file mode 100644 index 0000000..15814a5 Binary files /dev/null and b/material/latex-clase1.pdf differ diff --git a/material/ropec/ROPEC2019WordTemplate.doc b/material/ropec/ROPEC2019WordTemplate.doc new file mode 100644 index 0000000..92b459c Binary files /dev/null and b/material/ropec/ROPEC2019WordTemplate.doc differ