diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b25dd0f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.toc +*.synctex.gz \ No newline at end of file diff --git a/main.tex b/main.tex new file mode 100644 index 0000000..5d8ef13 --- /dev/null +++ b/main.tex @@ -0,0 +1,144 @@ +% Plantilla diseñada por +% Gerardo Marx Chávez-Campos para el TeCNM-ITM +\documentclass{beamer} +%\usetheme{tecnm} +%\usetheme{CambridgeUS} +\usetheme{Warsaw} +%\usecolortheme{beaver} +\usecolortheme{seahorse} +\usecolortheme{rose} +\usepackage{url} +\usepackage[spanish]{babel} +\usepackage[utf8]{inputenc} +\usepackage[T1]{fontenc} +\usepackage{graphicx} +\usepackage{mathrsfs} +\usepackage{amsmath} +\usepackage{multimedia} +\usepackage{rotating} +\usepackage[style=verbose,backend=biber]{biblatex} +\addbibresource{references.bib} + +\newtheorem{axioma}{Teorema}[section] +%\newtheorem{definition}{Definición}[section] + +\newcommand{\fst}[2]{\subsection{#2}\frame{\frametitle{#2} #2}} +%Comando para crear un frame con imagen: +\newcommand\imageFrame[2]{ +\begingroup +\begin{frame} + \begin{center} +\includegraphics[width=3.5in]{Figures/#1}\\ +\Large #2 + \end{center} +\end{frame} +\endgroup +} + +%\renewcommand{\definition}{Fig.}% + + +\title[Título corto]{Título Largo en la Presentación de Posgrado para mi Proyecto de Investigación} +%\date{May-2021} +\date{\today} +\author[gmcc]{\textbf{Alumno:} Gerardo Marx Chávez-Campos\\ +\textbf{Asesores:} Homer J. Simpson\\ +Michel J. Fox\\ +Guillermo del Toro\\ +Alejandro Jodorowsky} +\institute[TecNM]{Tecnológico Nacional de México\\ +Instituto Tecnológico de Morelia\\ +División de Estudios de Posgrado e Investigación} +\logo{\includegraphics[width=.4in]{Figures/soloLogoTecnm}} +\begin{document} + +%----INICIO Portada +\begin{frame}[plain] + \titlepage + \vspace{-.6in} + \includegraphics[width =0.25 \textwidth ]{Figures/soloLogoTecnm} +\end{frame} +%---FIN Portada + +%---INICIO Contenido% +\begin{frame}[fragile] +\frametitle{Contenido} + \tableofcontents +\end{frame} +%---FIN Contenido% + +%----------------------- +\section{Títulos, subtítulos y Boxes} +\subsection{Títulos y subtítulos} +\begin{frame} + \frametitle{Mi título} + \framesubtitle{Mi subtítulo} + + Este es el contenido de la diapositiva o \textit{Frame}... +\end{frame} + +%----------------------- +\subsection{Bloques} +\begin{frame}{Definiciones, ejemplos y alertas} + +\begin{alertblock}{Título} +Puedes usar las \alert{definiciones} para resaltar un punto o tópico muy importante en tu presentación. +\end{alertblock} + +\begin{exampleblock}{Ejemplo} + Contenido del bloque ... +\end{exampleblock} + +\begin{block}{Título del bloque} +Contenido del bloque ... +\end{block} + +\end{frame} + +%----------------------- +\section{Columnas e Imágenes} +\subsection{Columnas} +\begin{frame} + \frametitle{Columnas para formato} + \begin{block}{} + En algunas ocasiones es necesario separa el texto en columnas. La forma más simple es usando el entorno columns. + \end{block} +\bigskip + \begin{columns} + \begin{column}{0.5\textwidth} + Texto en la primera columna, algo de texto, más texto y más texto. Texto en la primera columna, algo de texto, más texto y más texto. Texto en la primera columna, algo de texto, más texto y más texto. + \end{column} + %------> + \begin{column}{0.5\textwidth}% + Texto en la segunda columna, algo de texto, más texto y más texto. Texto en la segunda columna, algo de texto, más texto y más texto. Texto en la segunda columna, algo de texto, más texto y más texto. + \end{column} + \end{columns} + +\end{frame} +%--------------- +\subsection{Columnas e imágenes} +\begin{frame} + \frametitle{Imágenes a la derecha} +\begin{columns} + \begin{column}{0.5\textwidth} + \centering + \includegraphics[width=\textwidth]{example-image-a} + \end{column} + %------> + \begin{column}{0.5\textwidth}% + Texto en la segunda columna, algo de texto, más texto y más texto. Texto en la segunda columna, algo de texto, más texto y más texto. Texto en la segunda columna, algo de texto, más texto y más texto. + \end{column} + \end{columns} + +\end{frame} + +\section{Notas al pie y Referencias} +\subsection{Notas al Pie} +\begin{frame}{Notas al Pie} +Normalmente las presentaciones usan las notas al pie para presentar información relevante\footnote{Una nota que destaca al pie ...}. Sin embargo, las notas al pie también también se puede usar para hacer citas en la presentación\footfullcite{einstein} + +\end{frame} +\section{Multimedia} +%------------- + +\end{document} diff --git a/references.bib b/references.bib new file mode 100644 index 0000000..230984e --- /dev/null +++ b/references.bib @@ -0,0 +1,25 @@ +@article{einstein, + author = "Albert Einstein", + title = "{Zur Elektrodynamik bewegter K{\"o}rper}. ({German}) + [{On} the electrodynamics of moving bodies]", + journal = "Annalen der Physik", + volume = "322", + number = "10", + pages = "891--921", + year = "1905", + DOI = "http://dx.doi.org/10.1002/andp.19053221004" +} + +@book{latexcompanion, + author = "Michel Goossens and Frank Mittelbach and Alexander Samarin", + title = "The \LaTeX\ Companion", + year = "1993", + publisher = "Addison-Wesley", + address = "Reading, Massachusetts" +} + +@misc{knuthwebsite, + author = "Donald Knuth", + title = "Knuth: Computers and Typesetting", + url = "http://www-cs-faculty.stanford.edu/\~{}uno/abcde.html" +} \ No newline at end of file diff --git a/tecnmDepi.pdf b/tecnmDepi.pdf new file mode 100644 index 0000000..d213652 Binary files /dev/null and b/tecnmDepi.pdf differ diff --git a/tecnmDepi.tex b/tecnmDepi.tex deleted file mode 100644 index 09ba563..0000000 --- a/tecnmDepi.tex +++ /dev/null @@ -1,68 +0,0 @@ -% Plantilla diseñada por -% Gerardo Marx Chávez-Campos para el TeCNM -\documentclass{beamer} -\usetheme{tecnm} -\usepackage{url} -\usepackage[spanish]{babel} -\usepackage[utf8]{inputenc} -\usepackage[T1]{fontenc} -\usepackage{graphicx} -\usepackage{mathrsfs} -\usepackage{amsmath} -\usepackage{multimedia} -\usepackage{rotating} -\newtheorem{axioma}{Teorema} - -\newcommand{\fst}[2]{\subsection{#2}\frame{\frametitle{#2} #2}} -%Comando para crear un frame con imagen: -\newcommand\imageFrame[2]{ -\begingroup -\begin{frame} - \begin{center} -\includegraphics[width=3.5in]{Figures/#1}\\ -\Large #2 - \end{center} -\end{frame} -\endgroup -} - - -\title[Título corto]{Título largo } -\date{Abril -- 2018} -%\date{\today} -\author[TecNM]{Gerardo Marx Chávez-Campos} -\institute[TecNM]{Tecnológico Nacional de México\\ -Instituto Tecnológico de Morelia\\ -División de Estudios de Posgrado e Investigación} -\logo{\includegraphics[width=.4in]{Figures/soloLogoTecnm}} -\begin{document} - -%----INICIO Portada -\begin{frame}[plain] - \titlepage - \vspace{-.6in} - \includegraphics[width =0.25 \textwidth ]{Figures/soloLogoTecnm} -\end{frame} -%---FIN Portada - -%---INICIO Contenido% -\begin{frame}[fragile] -\frametitle{Contenido} - \tableofcontents -\end{frame} -%---FIN Contenido% - -%----------------------- -\section{Objetivo general} -\begin{frame} - \centering - \textbf{Objetivo general} de los puntos que se revisan en la reunión, \alert{es lograr los indicadores que CONACyT evalúa} para permanecer o ingresar en el \textbf{PNPC}.\\ - - -\end{frame} -%------------- - - - - -\end{document}