23.5.13

LaTeX beamer class español

Publicado en http://latex.artikel-namsu.de/espanol/beamer-espanol.html
Publish in http://www.informatik.uni-freiburg.de/~frank/ENG/latex-course/latex-course-3/latex-course-3_en.html

Beamer ejemplo 1

Esto es un ejemplo para una muy fácil Beamer presentación. Se puede lo emplear que un punto de partida. Los ejemplos que seguido, se basa en lo. Es incluido por la complementariedad.
ejemplo1.pdf
ejemplo1.tex
ejemplo1.html

Beamer ejemplo 2

Hay más mirar
ejemplo2.pdf
ejemplo2.tex
ejemplo2.html

Beamer ejemplo 3

Otra vez más a mirar , y en total muy agradable
ejemplo3.pdf
ejemplo3.tex
ejemplo3.html

Beamer ejemplo 4

Cuando quiere más
ejemplo4.pdf
ejemplo4.tex
ejemplo4.html

Beamer ejemplo 5

Beamer ejemplo 4 con una dividida pantalla y imagen Las imagens de/por el Beamer ejemplo numero 5
ejemplo5.pdf
ejemplo5.tex
ejemplo5.html

Beamer ejemplo 6

Beamer ejemplo 5 con la opción plain para Frames por tiene más lugar para imagen en Frame 
ejemplo6.pdf
ejemplo6.tex
ejemplo6.html

Beamer ejemplo7

Beamer ejemplo 6 sin navegación  
ejemplo7.pdf
ejemplo7.tex
ejemplo7.html

Beamer ejemplo 7a

Beamer ejemplo 7 con texto que se desaparece
ejemplo7a.pdf
ejemplo7a.tex
ejemplo7a.html

Widescreen beamer slides


If you need to have widescreen slides, add the following line to your preamble

\usepackage[orientation=landscape,size=custom,width=16,height=9.75,scale=0.5,debug]{beamerposter}
and it should be the appropriate aspect.

Thesis on one page and Beamer handouts

The pdfpages package

The package pdfpages is really useful for putting one or more pages of one pdf document onto another A4 page using Latex.  For example to get your entire thesis on one page of A4 compile the following Latex code with pdflatex.
\documentclass[a4paper]{article}
 
\usepackage{pdfpages}
 
\begin{document}
 
\includepdf[nup=13x13,pages=1-152,delta= 0.0cm 0.0cm, frame=true]{thesis.pdf}
 
\end{document}

To create a nice handout for a beamer presentation first compile your presentation using the handout option e.g.
\documentclass[handout]{beamer}
then replace the penultimate line in the example Latex file above with some thing like
\includepdf[nup=4x2,pages=1-18,delta= 0.5cm 0.5cm, frame=true]{presentation.pdf}

Subequations


The subequations environment provides a convenient way to number equations in a 
group with a subordinate numbering scheme. For example, supposing that the current equation number is 2.8, write

\begin{equation}\label{first}
a=b+c
\end{equation}
some intervening text
\begin{subequations}\label{grp}
\begin{align}
a&=b+c\label{second}\\
d&=e+f+g\label{third}\\
h&=i+j\label{fourth}
\end{align}
\end{subequations}
to get
By putting a \label command immediately after \begin{subequations } you can get a
reference to the parent number; \eqref{grp} from the above example would produce (2)
while \eqref {second } would produce (2a).
You can also use the subequations environment to skip an equation number but record it
in a label. This could be used to give an equation number to a Figure or list, for
example
\begin{equation}
    ax = y\,,
\end{equation}
with properties
\begin{subequations}
\label{list1}
\end{subequations}
\begin{itemize}
    \item[(\ref{list1}.1)] $x$ and $y$ are vectors
    \item[(\ref{list1}.2)] $a$ is a scalar
\end{itemize}
\begin{equation}
    bx=cy\,.
\end{equation}
gives