Commit 7b0141b860441b27d449874d134cc8e46735c3c2

Authored by Francisco Coelho
1 parent 49fcccdc
Exists in master

added placeholders for description and examples

Showing 1 changed file with 44 additions and 2 deletions   Show diff stats
README.md
... ... @@ -7,5 +7,47 @@
7 7 * em **Linux**:
8 8 * em **OSX**:
9 9 * em **MS Windows**:
10   - 1. Instale o Linux;
11   - 2. Siga as instruções para instalar no **Linux**
12 10 \ No newline at end of file
  11 + 1. Remova o MS Windows;
  12 + 1. Instale o Linux e siga as instruções para instalar no Linux;
  13 +
  14 +## Temas e variantes
  15 +
  16 +# Simples
  17 +
  18 +# Com contexto
  19 +
  20 +# Com a barra do título muito destacada
  21 +
  22 +## Exemplos
  23 +
  24 +```
  25 +\documentclass{beamer}
  26 +\usetheme{Giraldo}
  27 +%
  28 +\title{Exemplo de uma aula}
  29 +\subtitle{Uso do tema `Giraldo'}
  30 +\author{Francisco Coelho}
  31 +\institute[\texttt{fc@di.uevora.pt}]{
  32 +Departamento de Informática\\
  33 +Escola de Ciências e Tecnologia\\
  34 +Universidade de Évora
  35 +}
  36 +
  37 +\begin{document}
  38 + \begin{frame}
  39 + \titlepage
  40 + \end{frame}
  41 +
  42 + \section*{Preâmbulo}
  43 +
  44 + \begin{frame}{Sumário}
  45 + \tableofcontents
  46 + \end{frame}
  47 +
  48 + \section{Uso básico do `beamer`}
  49 +
  50 + \begin{frame}{Criar uma página}
  51 + Olá
  52 + \end{frame}
  53 +\end{document}
  54 +```
13 55 \ No newline at end of file
... ...