diff --git a/2025-2/2025-04-07-Taller-Interno-Git/CursoGit.md b/2025-2/2025-04-07-Taller-Interno-Git/CursoGit.md new file mode 100644 index 0000000..8901a86 --- /dev/null +++ b/2025-2/2025-04-07-Taller-Interno-Git/CursoGit.md @@ -0,0 +1,151 @@ +--- +lang: "es" +title: "Git para principiantes" +subtitle: "Introducción al control de versiones con git" +author: + - \textsc{LIDSoL members} \newline The GOAT lab +institute: + - \textit{Universidad Nacional Autónoma de México\\ Facultad de Ingeniería} +date: Taller de Git, Semestre 2025-2 +--- + +# Información del Taller + +## Tiempo estimado + +Aproximadamente 180 minutos de taller. + +## Objetivos + +Que los participantes entiendan: + +- Que es un sistema de control de versiones y su utilidad +- Flujo de trabajo básico con git +- Comandos básicos de git +- Uso de ramas +- Uso de repositorios remotos +- Creación de un repositorio en GitHub + +# Introducción al tema + +Un sistema de control de versiones es una herramienta que permite llevar un registro de los cambios realizados en un proyecto a lo largo del tiempo. + +![Homework-flow](./img/Tareas.png) + +# Qué es Git + +- Git es un sistema de control de versiones distribuido. +- Fue creado por Linus Torvalds en 2005. +- Es software libre y de código abierto. + +# Flujo de trabajo básico con Git + +![Github-flow](./img/github-flow-diagram.png) + +# Conceptos básicos + +## Snapshot + +Representa el estado de los archivos en un momento dado. + +## Commit + +Es un snapshot con un mensaje descriptivo. + +## Branch + +Es una línea de desarrollo independiente. + +## Repositorio + +Es un conjunto de archivos y directorios que git controla. + +# Usando Git + +![Zonas de trabajo](./img/basic-usage.png) + +# Usando Git + +![Zonas de trabajo](./img/basic-usage-2.png) + +# Usando Git + +![Convenciones](./img/conventions.png) + +# Comandos básicos + +![Commit](./img/commit-main.png) + +# Comandos básicos + +![Commit stable](./img/commit-stable.png) + +# Comandos básicos + +![Commit amend](./img/commit-amend.png) + +# Comandos básicos + +![Diff](./img/diff.png) + +# Comandos básicos + +![Checkout](./img/checkout-files.png) + +# Comandos básicos + +![Checkout branch](./img/checkout-branch.png) + +# Comandos básicos + +![Checkout detached](./img/checkout-detached.png) + +# Comandos básicos + +![Commit detached](./img/commit-detached.png) + +# Comandos básicos + +![Checkout after detached](./img/checkout-after-detached.png) + +# Comandos básicos + +![Checkout b detached](./img/checkout-b-detached.png) + +# Comandos básicos + +![Reset commit](./img/reset-commit.png) + +# Comandos básicos + +![Reset](./img/reset.png) + +# Comandos básicos + +![Reset files](./img/reset-files.png) + +# Comandos básicos + +![Merge Fast Forward](./img/merge-ff.png) + +# Comandos básicos + +![Merge](./img/merge.png) + +# Comandos básicos + +![Cherry pick](./img/cherry-pick.png) + +# Comandos básicos + +![Rebase](./img/rebase.png) + +# Comandos básicos + +![Rebase onto](./img/rebase-onto.png) + +# Bibliografía + +- https://git-scm.com/book/en/v2 +- https://marklodato.github.io/visual-git-guide/index-es.html +- https://blog.kinto-technologies.com/posts/2023-03-07-From-Git-flow-to-GitHub-flow/ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/CursoGit.pdf b/2025-2/2025-04-07-Taller-Interno-Git/CursoGit.pdf new file mode 100644 index 0000000..8e1e79d Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/CursoGit.pdf differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/guide.pdf b/2025-2/2025-04-07-Taller-Interno-Git/guide.pdf new file mode 100644 index 0000000..b548691 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/guide.pdf differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/guide.tex b/2025-2/2025-04-07-Taller-Interno-Git/guide.tex new file mode 100644 index 0000000..b0d53c0 --- /dev/null +++ b/2025-2/2025-04-07-Taller-Interno-Git/guide.tex @@ -0,0 +1,104 @@ +\documentclass[12pt, letterpaper]{article} + +\usepackage[english]{babel} % Sets the language and regional settings for English documents +\usepackage[utf8]{inputenc} % Allows the use of UTF-8 characters in the document +\usepackage[T1]{fontenc} % Specifies the font encoding +\usepackage[margin=2cm]{geometry} % Sets the page margins +\usepackage{makeidx} % Enables the creation of indexes +\usepackage{natbib} % Provides flexible bibliography support +\usepackage{url} % Allows the use of URLs +\usepackage{enumitem} % Customizes the appearance of lists +\usepackage{listings} % Provides syntax highlighting for code listings +\usepackage[dvipsnames]{xcolor} % Allows the use of colors +\usepackage{parskip} % Modifies paragraph spacing +\usepackage{graphicx} % Enables the inclusion of graphics +\usepackage{tikz} % Allows the creation of graphics and diagrams +\usepackage{float} +\usepackage{hyperref} % Enables the creation of hyperlinks +\usepackage{amsmath} % Provides additional math environments and commands +\usepackage{circuitikz} % Allows the creation of electrical circuits +\usepackage{adjustbox} % Adjusts the size of the circuit diagrams +\usepackage{arydshln} % Allows the use of dashed lines in tables + +\usetikzlibrary{shapes.geometric, positioning} + +\lstset{ + language=SQL, + basicstyle=\ttfamily\small, + keywordstyle=\color{blue}, + commentstyle=\color[rgb]{0,0.5,0}, + stringstyle=\color{red}, + numbers=left, + numberstyle=\tiny\color{gray}, + stepnumber=1, + numbersep=10pt, + backgroundcolor=\color{white}, + showspaces=false, + showstringspaces=false, + breaklines=true, + frame=single, + tabsize=2, captionpos=b, lineskip=-1pt, + extendedchars=true, + literate={á}{{\'a}}1 {é}{{\'e}}1 {í}{{\'i}}1 {ó}{{\'o}}1 {ú}{{\'u}}1 {Á}{{\'A}}1 {É}{{\'E}}1 {Í}{{\'I}}1 {Ó}{{\'O}}1 {Ú}{{\'U}}1 {ñ}{{\~n}}1 {Ñ}{{\~N}}1 {¿}{{\textquestiondown}}1 {¡}{{\textexclamdown}}1 +} + +\graphicspath{ {./img/} } % Sets the path for the graphics + +\newlist{biblio}{enumerate}{1} +\setlist[biblio,1]{label=[\arabic*]} + +\makeindex + +\begin{document} + +\section*{Sistema de control de versiones} + +\subsection*{¿Qué es un sistema de control de versiones?} + +Un sistema de control de versiones (VCS) es una herramienta que permite gestionar y realizar un seguimiento de los cambios en archivos y proyectos a lo largo del tiempo. Facilita mucho colaboración entre múltiples desarrolladores, permitiendo que trabajen en el mismo proyecto sin conflictos. Sirven para el desarrollo de software, ya que permiten revertir cambios, comparar versiones y mantener un historial completo de modificaciones. + +Justo en este curso lo que buscamos en entender como funcionan estos sistemas, pero, con git. + +\subsection*{¿Qué es Git?} +Git es un sistema de control de versiones distribuido, lo que significa que cada desarrollador tiene una copia completa del repositorio en su máquina local. + +Esto permite trabajar sin conexión y realizar cambios de manera independiente antes de sincronizar con el repositorio central. + +Git es ampliamente utilizado en el desarrollo de software debido a su eficiencia, flexibilidad y capacidad para manejar proyectos grandes y complejos. + +Y lo más importante, es software libre y de código abierto. + +\section*{Conceptos básicos de Git} + +\subsection*{Snapshot} +Un snapshot en Git es una captura del estado actual de los archivos en un repositorio en un momento específico. Cada vez que realizamos un commit, Git guarda un snapshot de cómo lucen todos los archivos en ese momento. + +\subsection*{Commit} +Un commit es un registro de los cambios realizados en el repositorio. Cada commit tiene un identificador único (hash) y contiene información sobre los cambios realizados, el autor y la fecha. Los commits permiten rastrear el historial del proyecto y revertir a versiones anteriores si es necesario. + +\subsection*{Branch} +Una branch o rama es una línea de desarrollo independiente dentro de un repositorio. Permite trabajar en diferentes características o correcciones de errores sin afectar la rama principal. Este concepto es principalmente usado para desarrollo colaborativo. + +\subsection*{Repositorio} +Un repositorio es un espacio de almacenamiento donde se guardan todos los archivos y el historial de cambios de un proyecto. Puede ser local (en la máquina del desarrollador) o remoto (en un servidor, como gitlab o github). Git permite clonar, crear y gestionar repositorios de manera eficiente. + +\subsection*{Cherry-pick} +El cherry-pick es una operación en Git que permite aplicar un commit específico de una rama a otra. Esto es útil cuando se desea incorporar un cambio particular sin fusionar toda la rama. Al hacer cherry-pick, Git crea un nuevo commit en la rama de destino con los cambios del commit seleccionado. + +\subsection*{Rebase} +El rebase es una operación en Git que permite mover o combinar commits de una rama a otra. A diferencia del merge, que crea un nuevo commit de fusión, el rebase reescribe el historial de commits, aplicando los cambios de una rama sobre otra. + +\subsection*{Rebase onto} +git rebase --onto es una variante del rebase que permite especificar una nueva base para una serie de commits. Es similar a un cherry pick, pero en lugar de aplicar un solo commit, se pueden mover varios commits a una nueva. + + +% \section{Bibliography} + +% \begin{biblio} +% %for: https://www.poli.edu.co/blog/poliverso/diseno-digital-que-es +% \item \textit{Diseño digital: qué es y por qué es importante.} (2021, August 26). Poliverso. Retrieved October 16, 2024, from: \textcolor{blue}{\underline{\url{https://www.poli.edu.co/blog/poliverso/diseno-digital-que-es}}} +% %for: https://www.sky6cancun.com/marketing/diseno-grafico/diseno-digital-que-es-y-para-que-sirve/ +% \item \textit{Diseño digital: qué es y para qué sirve.} (2021, August 26). Sky6Cancún. Retrieved October 16, 2024, from: \textcolor{blue}{\underline{\url{https://www.sky6cancun.com/marketing/diseno-grafico/}}} +% \end{biblio} + +\end{document} diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-01.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-01.png new file mode 100644 index 0000000..96101bb Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-01.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-02.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-02.png new file mode 100644 index 0000000..5a3ee77 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-02.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-03.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-03.png new file mode 100644 index 0000000..f90c05c Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-03.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-04.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-04.png new file mode 100644 index 0000000..ee07b19 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-04.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-05.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-05.png new file mode 100644 index 0000000..8648170 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-05.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-06.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-06.png new file mode 100644 index 0000000..22f39be Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-06.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-07.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-07.png new file mode 100644 index 0000000..592d82c Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-07.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-08.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-08.png new file mode 100644 index 0000000..7b3f3eb Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-08.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-09.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-09.png new file mode 100644 index 0000000..09bce02 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-09.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-10.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-10.png new file mode 100644 index 0000000..254a4c2 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-10.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-11.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-11.png new file mode 100644 index 0000000..a6e0717 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-11.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Github-12.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-12.png new file mode 100644 index 0000000..1a0ca3d Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Github-12.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/Tareas.png b/2025-2/2025-04-07-Taller-Interno-Git/img/Tareas.png new file mode 100644 index 0000000..bf371e3 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/Tareas.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/basic-usage-2.png b/2025-2/2025-04-07-Taller-Interno-Git/img/basic-usage-2.png new file mode 100644 index 0000000..d04d872 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/basic-usage-2.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/basic-usage.png b/2025-2/2025-04-07-Taller-Interno-Git/img/basic-usage.png new file mode 100644 index 0000000..e6a9439 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/basic-usage.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-after-detached.png b/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-after-detached.png new file mode 100644 index 0000000..8e57412 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-after-detached.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-b-detached.png b/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-b-detached.png new file mode 100644 index 0000000..768d072 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-b-detached.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-branch.png b/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-branch.png new file mode 100644 index 0000000..5055107 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-branch.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-detached.png b/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-detached.png new file mode 100644 index 0000000..ba5071f Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-detached.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-files.png b/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-files.png new file mode 100644 index 0000000..73113e1 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/checkout-files.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/cherry-pick.png b/2025-2/2025-04-07-Taller-Interno-Git/img/cherry-pick.png new file mode 100644 index 0000000..e69bfe8 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/cherry-pick.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/commit-amend.png b/2025-2/2025-04-07-Taller-Interno-Git/img/commit-amend.png new file mode 100644 index 0000000..fc0b505 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/commit-amend.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/commit-detached.png b/2025-2/2025-04-07-Taller-Interno-Git/img/commit-detached.png new file mode 100644 index 0000000..16b4a9b Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/commit-detached.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/commit-main.png b/2025-2/2025-04-07-Taller-Interno-Git/img/commit-main.png new file mode 100644 index 0000000..bde30ec Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/commit-main.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/commit-stable.png b/2025-2/2025-04-07-Taller-Interno-Git/img/commit-stable.png new file mode 100644 index 0000000..7ac5dc8 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/commit-stable.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/conventions.png b/2025-2/2025-04-07-Taller-Interno-Git/img/conventions.png new file mode 100644 index 0000000..2a1bc47 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/conventions.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/die-small.png b/2025-2/2025-04-07-Taller-Interno-Git/img/die-small.png new file mode 100644 index 0000000..ee4ee7e Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/die-small.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/diff.png b/2025-2/2025-04-07-Taller-Interno-Git/img/diff.png new file mode 100644 index 0000000..7e848e8 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/diff.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/fi-small.png b/2025-2/2025-04-07-Taller-Interno-Git/img/fi-small.png new file mode 100644 index 0000000..d27facb Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/fi-small.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/github-flow-diagram.png b/2025-2/2025-04-07-Taller-Interno-Git/img/github-flow-diagram.png new file mode 100644 index 0000000..a47ed3b Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/github-flow-diagram.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/lidsol-small.png b/2025-2/2025-04-07-Taller-Interno-Git/img/lidsol-small.png new file mode 100644 index 0000000..09355ea Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/lidsol-small.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/merge-ff.png b/2025-2/2025-04-07-Taller-Interno-Git/img/merge-ff.png new file mode 100644 index 0000000..d85b855 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/merge-ff.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/merge.png b/2025-2/2025-04-07-Taller-Interno-Git/img/merge.png new file mode 100644 index 0000000..865e759 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/merge.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/rebase-onto.png b/2025-2/2025-04-07-Taller-Interno-Git/img/rebase-onto.png new file mode 100644 index 0000000..69008c7 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/rebase-onto.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/rebase.png b/2025-2/2025-04-07-Taller-Interno-Git/img/rebase.png new file mode 100644 index 0000000..eb3b101 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/rebase.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/reset-commit.png b/2025-2/2025-04-07-Taller-Interno-Git/img/reset-commit.png new file mode 100644 index 0000000..f7852ca Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/reset-commit.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/reset-files.png b/2025-2/2025-04-07-Taller-Interno-Git/img/reset-files.png new file mode 100644 index 0000000..bb5364c Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/reset-files.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/img/reset.png b/2025-2/2025-04-07-Taller-Interno-Git/img/reset.png new file mode 100644 index 0000000..e3ffb05 Binary files /dev/null and b/2025-2/2025-04-07-Taller-Interno-Git/img/reset.png differ diff --git a/2025-2/2025-04-07-Taller-Interno-Git/preamble.tex b/2025-2/2025-04-07-Taller-Interno-Git/preamble.tex new file mode 100644 index 0000000..45f34f6 --- /dev/null +++ b/2025-2/2025-04-07-Taller-Interno-Git/preamble.tex @@ -0,0 +1,62 @@ +\usepackage[utf8]{inputenc} +\usepackage{hyperref} +\usepackage{charter} +\usepackage{tikz} +\usepackage{graphicx} +\usepackage{amsmath} +\usepackage{amssymb} +\usepackage{listings} +\usefonttheme[onlymath]{serif} + +\definecolor{azuloscuro}{HTML}{152139} +\definecolor{azulclaro}{HTML}{0064FF} + +\setbeamerfont{subtitle}{size=\scriptsize} +\setbeamertemplate{title page}{ + \begin{tikzpicture}[remember picture, overlay] + \fill[azuloscuro] (current page.south west) rectangle (current page.north east); + \draw[azulclaro, line width=1ex] (current page.north west) -- (current page.north east); + \node[anchor=center, align=left, text width=\textwidth, inner sep=0pt, text=white, text height=2.5ex] at (current page.center) { + \usebeamerfont{title} + {\centering\inserttitle\\[1cm]} + \rule{\linewidth}{0.4pt} + \usebeamerfont{subtitle} + {\insertauthor\\[0.2cm]} + {\insertinstitute\par} + \rule{\linewidth}{0.4pt}\\[0.5cm] + {\insertdate} + }; + \end{tikzpicture} +} + + +\setbeamertemplate{headline}{% + {\color{azulclaro}\rule{\paperwidth}{1ex}}% +} + +\setbeamercolor*{titlelike}{use=structure, fg=azuloscuro, bg=white} + +\setbeamercolor*{footline in head/foot}{use=structure, fg=white, bg=azuloscuro} +\setbeamertemplate{footline}{% + \usebeamertemplate*{headline} + \begin{beamercolorbox}[ht=8.25ex, dp=1ex]{footline in head/foot} + \hspace{1.2em}\includegraphics[height=.25in]{img/lidsol-small.png}\quad + \hspace{1.2em}\includegraphics[height=.25in]{img/die-small.png}\quad + \hspace{1.2em}\includegraphics[height=.25in]{img/fi-small.png}\quad + \hfill + \vbox{% + \hbox{\hspace{.65in}\fontfamily{phv}\selectfont\textbf{LIDSOL} cursos}% + \par + \hbox{ + \usebeamertemplate***{navigation symbols} + } + } + \hspace{.5em} + \end{beamercolorbox}% +} + +\setbeamercolor{itemize item}{fg=azulclaro} +\setbeamercolor{itemize subitem}{fg=azulclaro} +\setbeamercolor{itemize subsubitem}{fg=azulclaro} + +\setbeamertemplate{navigation symbols}{}