Modelos de arquivos

Disponibilizo abaixo alguns arquivos Rmd que podem auxiliar você a produzir documentos contendo mapas, tabelas e outros, por meio de códigos em R. Pretendo disponibilizar arquivos variados para que eles possam ser mesclados e ajudar o praticante iniciante na produção do que ele desejar.

Análise exploratória de dados - Conjunto de dados iris

Disponível em: /docs/exemplos/aed_iris.Rmd.

---
title: "Análise exploratória de dados - iris"
author: "Euzinho Euzo Euzão"
date: "15 Maio 2024"
---

```{r, include=FALSE}
# estafuncao checa se os pacotes em `lista_de_pacotes` estao instalados no seu computador; se nao estiverem, a funcao vai instalar para vc
lista_de_pacotes <- c("ggplot2")
pacote_nao_instalado <- lista_de_pacotes[!(lista_de_pacotes %in% installed.packages()[,"Package"])]
if(length(pacote_nao_instalado)) {install.packages(pacote_nao_instalado)}
```


## Análise exploratória de dados

Vou analisar o conjunto de dados chamado `iris`.

```{r, echo=FALSE}
head(iris, 5)
```

Aqui escrevo mais texto sobre meu conjunto de dados.

### Gráficos

```{r, echo=TRUE}
library("ggplot2")
iris |> 
  ggplot(aes(Sepal.Length, Sepal.Width)) +
  geom_point()
```


## Colocarei uma figura localizada em outra pasta

Usarei o caminho relativo.  

![](../../figuras/capa.png)

Mapa interativo com pacote leaflet

Disponível em: /docs/exemplos/mapa1.Rmd.

---
title: "Exemplo - Mapa"
author: "R. O. Perdiz"
date: "1 Jan 2024"
output: html_document
---

Um mapa bonito para compartilhar.

```{r}
library("leaflet")
leaflet() |>
  addTiles() |>
  setView(-60.691585, 2.834153, zoom = 19)
```

Referência cruzada em figuras e tabelas

Disponível em: /docs/exemplos/referencia_cruzada.Rmd.

---
title: "Análise exploratória de dados"
subtitle: "Aqui vai o subtítulo"
author: Ricardinho
date: 4 Jun 2024
# documentclass: book
output: 
  bookdown::pdf_document2:
    toc: true
    # includes:
    #   in_header: "header.tex"
    #   before_body: "before-body.tex"
  # bookdown::word_document2:
  #   reference_docx: modelo.docx
  #   theme: cerulean
  #   fig_width: 12
  #   fig_height: 10
# lof: yes
# lot: yes
bibliography: minhaprimeiraref.bib
csl: associacao-brasileira-de-normas-tecnicas.csl
---

```{r, echo=FALSE, eval=TRUE, message=FALSE}
library("knitr")
variavel1 <- 5+2
variavel2 <- variavel1 +2

library("dplyr")

exemplinho <- read.table("exemplinho.csv", sep = ",", header = TRUE)
```

\newpage

```{r, echo=FALSE, eval=FALSE}
1+1+1+1+1+2
```


```{r}
#| echo: true
#| eval: false
#| include: false
#| message: false
#| warning: false
5+2
```

# Introdução

## Subintrodução

Aqui está a variável 1: `r variavel1`.  


Aqui eu tenho um texto introdutório sobre minha análise exploratória de dados (AED) referentes a carros.  

Vejam a figura \@ref(fig:fig1).  

```{r fig1, fig.cap = "Aqui vai a legenda das figuras.", out.width="120%"}
plot(mtcars)
```

Olha a fotinha \@ref(fig:fotinha).  

```{r fotinha, fig.cap= "Fotinha", out.width="50%"}
#| echo: false
knitr::include_graphics("fotinha.JPG")
```

```{r}
magick::image_read("../fotinha.JPG") |> 
  magick::image_scale("x700")
```


A tabela \@ref(tab:minha-tabela) expõe as primeiras 6 linhas do conjunto de dados 'mtcars'.  

```{r minha-tabela}
knitr::kable(head(mtcars), caption = "Aqui vai a legenda de tabelas, isto é, dentro do argumento 'caption' da função knitr::kable")
```



# Material e métodos

Aqui eu discorro sobre os métodos utilizados para responder minhas perguntas.  

Uma lista de refs [@Xieetal2020;@Yaoetal2024].  


## Localidades

## Análise de dados

```{r, echo=FALSE, warning=FALSE}
library("palmerpenguins")
library("ggplot2")
ggplot(penguins) +
  geom_point(aes(x = bill_length_mm, y = bill_depth_mm, color = species)) +
  theme_bw()

```

# Resultados

## Genética

### ddradSEQ

## Morfologia

Reunimos um conjunto de `r nrow(mtcars)` observações e `r ncol(mtcars)` variáveis.  

```{r}
mtcars2 <- dplyr::bind_rows(mtcars, mtcars)
```

Na série temporal do ano de 2019, houve `r nrow(mtcars2)` observações e `r ncol(mtcars2)` variáveis para estimar o traço funcional do solo papapa.  

A tabela \@ref(tab:tab2) evidencia as seis primeiras linhas de nosso conjunto de dados.  

```{r tab2}
#| echo: false
dados = read.table("exemplinho.csv", header = TRUE, sep = ",")
knitr::kable(dados, caption = "Seis primeiras linhas do conjunto de dados iris.")
```

Coletamos `r length(unique(dados$Species))` espécies diferentes.  

As espécies coletadas foram `r glue::glue_collapse(x = sort(unique(dados$Species)), sep = ", ", last = " e ")`.  

`r 1+1`

| Nome    | Altura |
|---------|--------|
| Lysne   | `r 1+1`|
| Luciana | `r 1+2`|
| Rhaylla | 1,68   |
| José    | 1,82   |
| Sylvio  | 1,73   |
| Carlos  | 1,75   |
| Ricardo | 1,79   |

: https://www.tablesgenerator.com/


# Referências

Aparência

Disponível em: /docs/exemplos/aparencia.Rmd.

---
title: "Aparência"
author: "Reginaldo"
date: "`r Sys.Date()`"
output: 
  html_document:
    theme: spacelab
    highlight: textmate
---


## Controlando a aparência

Por meio do argumento `theme` dentro do YAML, podemos controlar a aparência de seu arquivo HTML.
Possíveis valores incluem:


> default, bootstrap, cerulean, cosmo, darkly, flatly, journal, lumen, paper, readable, sandstone, simplex, spacelab, united, yeti

Teste cada uma dessas possibilidades e veja como fica a aparência de seu produto.
Para testar, escreva dessa maneira no seu YAML:

```yaml
---
title: "Análise exploratória de dados"
author: Guguinha
output: 
  html_document:
    theme: journal
---
```

## Como é a aparência do código presente em meu arquivo Rmd?


Suponha que eu possua o código abaixo:

```{r}
1 + 1
```

Como ele vai aparecer no produto final?  

Nós controlamos essa variável por meio do argumento `highlight`.
As opções disponíevis incluem:

> default, tango, pygments, kate, monochrome, espresso, zenburn, haddock, breezedark, textmate

Teste as opções em seu YAML escrevendo como abaixo:

```yaml
---
title: "Análise exploratória de dados"
author: Guguinha
output: 
  html_document:
    highlight: espresso
---
```

Controle de figuras

Disponível em: /docs/exemplos/controle_figuras.Rmd.

---
title: "Controle de figuras"
author: Guerreira Luaninha
date: 4 Jun 2024
output: 
  bookdown::html_document2:
    fig_width: 10
    fig_height: 6
    fig_caption: true
---

Podemos controlar como as figuras aparecerão em nossos produtos por meio dos argumentos YAML a seguir:

+ `fig_width` e `fig_height` controlam, respectivamente, a largura e altura da imagem;

+ `fig_caption` controla se as figuras devem ser compiladas com ou sem legendas (valores possíveis `true` ou `false`)

+ `dev` controla qual dispositivo deve compilar as figuras, isto é, se `pdf`, `png`, ou outros (padrão é o `png`).  

Vejam possibilidades abaixo e testem em seus arquivos:

```yaml
---
title: "Análise exploratória de dados"
author: Guerreira Luaninha
date: 4 Jun 2024
output: 
  html_document:
    fig_width: 7
    fig_height: 6
    fig_caption: true
---
```

Vejam a figura \@ref(fig:fig1).  

```{r fig1, fig.cap = "Aqui vai a legenda das figuras."}
plot(mtcars)
```

Referências bib

Disponível em: /docs/exemplos/minhaprimeiralistadereferencia.Rmd.

---
title: "Minha primeira vez usando arquivo Bib"
author: "Mago Joãozinho"
date: "`r Sys.Date()`"
output: html_document
bibliography:
  - minhaprimeiraref.bib
csl: associacao-brasileira-de-normas-tecnicas.csl
---

# Introdução

Um artigo citado de maneira direta, @Cysneirosetal2024.  

Um artigo citado de maneira indireta [@Cysneirosetal2024].  

Um livro [@SenhorasSenhoras2020].  

Uma base de dados [@ibge_producaoagricola].  

Um pacote de R [@Xieetal2020].  

R [@R2024].  

Um livro na mão [@Meszaros2009].  

Vamos supor que eu queira citar duas referências indiretamente de vez [@Meszaros2009;@R2024].  

Direto @R2024.  

Segundo fulano de tal: 

*Essa é uma transcrição literal do que fulano falou* [@Yaoetal2024]  

Eu vou citar uma ref do meu arquivo baixado do Web of Science [@Yaoetal2024].  

Uma lista de refs [@Paiva_2021;@Xieetal2020;@Yaoetal2024].  

# Referências

Você pode baixar também um arquivo .bib como exemplo. Construímos este arquivo em sala de aula:

@Article{Cysneirosetal2024,
  author           = {Cysneiros, Vinicius Costa and Pelissari, Allan Libanio and Nascimento, Rodrigo Geroni Mendes and MACHADO, Sebastião Amaral},
  journal          = {Acta Amazonica},
  title            = {Multilevel mixed-effect models to predict wood volume in a hyperdiverse Amazon forest},
  year             = {2024},
  issn             = {0044-5967},
  number           = {1},
  volume           = {54},
  comment          = {Eu li e gostei, achei isso, achei aquilo.},
  creationdate     = {2024-07-16T09:16:41},
  doi              = {10.1590/1809-4392202302081},
  modificationdate = {2024-07-16T10:01:37},
  publisher        = {FapUNIFESP (SciELO)},
}

@Book{SenhorasSenhoras2020,
  author           = {SENHORAS, Elói Martins and SENHORAS, Cândida Alzira Bentes de Magalhães},
  publisher        = {Zenodo},
  title            = {Políticas Públicas: Agendas em Tempos de Crise},
  year             = {2020},
  copyright        = {Creative Commons Attribution 4.0 International},
  creationdate     = {2024-07-16T09:39:53},
  doi              = {10.5281/ZENODO.3901672},
  keywords         = {Boa Vista; Brasil; Políticas Públicas; Roraima},
  language         = {pt},
  modificationdate = {2024-07-16T09:53:59},
}

@Misc{ibge_producaoagricola,
  author           = {{Instituto Brasileiro de Geografia e Estatística (IBGE)}},
  howpublished     = {digital},
  note             = {Acesso em 2024-07-16.},
  title            = {Produção Agropecuária},
  year             = {2024},
  creationdate     = {2024-07-16T09:48:41},
  modificationdate = {2024-07-16T09:56:53},
  url              = {https://www.ibge.gov.br/explica/producao-agropecuaria/},
}

@Book{Xieetal2020,
  author           = {Yihui Xie and Christophe Dervieux and Emily Riederer},
  publisher        = {Chapman and Hall/CRC},
  title            = {R Markdown Cookbook},
  year             = {2020},
  address          = {Boca Raton, Florida},
  isbn             = {9780367563837},
  modificationdate = {2024-07-16T10:32:20},
  url              = {https://bookdown.org/yihui/rmarkdown-cookbook},
}

@Manual{R2024,
  title            = {R: A Language and Environment for Statistical Computing},
  address          = {Vienna, Austria},
  author           = {{R Core Team}},
  organization     = {R Foundation for Statistical Computing},
  year             = {2024},
  modificationdate = {2024-07-18T09:25:15},
  url              = {https://www.R-project.org/},
}

@Article{Rossietal2020,
  author           = {Sebastian Dario Rossi and Agustina Barros and Chelsey Walden-Schreiner and Catherine Pickering},
  journal          = {Ambio},
  title            = {Using social media images to assess ecosystem services in a remote protected area in the Argentinean Andes},
  year             = {2020},
  issn             = {00447447, 16547209},
  number           = {6},
  pages            = {pp. 1146--1160},
  volume           = {49},
  abstract         = {Social media images are a novel source of data to assess how people view and value the environment. Access to these images is often free, the volume and spread of images is expanding rapidly and hence they are an increasingly valuable source of data complementing and expanding on other data. Recently, coding images has been used to assess sociocultural values relating to ecosystem services including those provided by national parks. To further explore the use of social media images, including for remote environments, we analysed the content of images posted to Flickr by people visiting a national park that contains the highest mountain in the southern hemisphere, Mt. Aconcagua, in Argentina, South America. The saliency of aesthetic landscapes, recreation, social relations and fresh-water provisioning was high across the 334 images posted to Flickr by 104 visitors to the Park, but location mattered. Images from visitors in easily accessible day-use areas were significantly more likely to include content that reflects biodiversityexistence, geology, culture and education services, while the content of images from remote areas was more likely to reflect social relations and fresh-water provision services. Comparisons of the content of images from Mt. Aconcagua with other studies in Europe, South America, Asia, Africa and Australia highlight similarities and differences in people’s views of the diversity of locations, but also the benefits and limitations of user-generated social media content when assessing environmental and management issues.},
  modificationdate = {2024-07-16T10:55:19},
  publisher        = {[Springer, Royal Swedish Academy of Sciences]},
  url              = {https://www.jstor.org/stable/48727232},
  urldate          = {2024-07-16},
}

@Article{FerreiraSilvaetal2024,
  author           = {Ferreira-Silva, Silvia Larissa and Marinho, Lucas C. and Mouzinho, Thiago M. and Hopkins, Michael J. G.},
  journal          = {Brittonia},
  title            = {A new species of Lorostemon (Clusiaceae) from the eastern Amazonia},
  year             = {2024},
  issn             = {1938-436X},
  month            = jun,
  creationdate     = {2024-07-16T10:57:17},
  doi              = {10.1007/s12228-024-09791-1},
  modificationdate = {2024-07-16T11:03:00},
  publisher        = {Springer Science and Business Media LLC},
}

@Article{Yaoetal2024,
  author           = {Yi-Fei Yao and Wei Ni and Yong-Sheng Zhou and Huan Yan and Hai-Yang Liu},
  journal          = {Phytochemistry Letters},
  title            = {Three new dammarane-type triterpenoid saponins and their cytotoxicity from steamed Panax notoginseng},
  year             = {2024},
  issn             = {1874-3900},
  pages            = {1-5},
  volume           = {62},
  abstract         = {Three new dammarane-type triterpenoid saponins, namely 6′-crotonyl-(20 S)-ginsenoside Rg3 (1), 6′-crotonyl-(20 R)-ginsenoside Rg3 (2), and notoginsenolide A (3), were isolated from the steamed Panax notoginseng. Among them, 3 is the first tetranordamarane triterpenoid glucoside with an α, β-unsaturated γ-lactone group. The three isolates were evaluated for their cytotoxicities against five human cancer cell lines (HL-60, A-549, SMMC-7721, MDA-MB-231, and SW480). The results showed that compound 1 had moderate cytotoxicity against HL-60 cell line with an IC50 value of 23.39 μM.},
  doi              = {https://doi.org/10.1016/j.phytol.2024.06.001},
  keywords         = {Steamed , Dammarane triterpenoid saponins, 6'-crotonyl-(20 )-ginsenoside Rg3, 6'-crotonyl-(20 )-ginsenoside Rg3, Notoginsenolide A, Cytotoxicity},
  modificationdate = {2024-07-16T11:08:38},
  url              = {https://www.sciencedirect.com/science/article/pii/S1874390024000867},
}

@Manual{dplyr,
  title            = {dplyr: A Grammar of Data Manipulation},
  author           = {Hadley Wickham and Romain François and Lionel Henry and Kirill Müller and Davis Vaughan},
  note             = {R package version 1.1.4},
  year             = {2023},
  modificationdate = {2024-07-18T09:30:18},
  url              = {https://CRAN.R-project.org/package=dplyr},
}

@Article{ipyrad,
  author           = {Eaton, Deren A R and Overcast, Isaac},
  journal          = {Bioinformatics},
  title            = {{ipyrad: Interactive assembly and analysis of RADseq datasets}},
  year             = {2020},
  issn             = {1367-4803},
  month            = {01},
  note             = {btz966},
  abstract         = {{ipyrad is a free and open source tool for assembling and analyzing restriction site-associated DNA sequence datasets using de novo and/or reference-based approaches. It is designed to be massively scalable to hundreds of taxa and thousands of samples, and can be efficiently parallelized on high performance computing clusters. It is available both as a command line interface and as a Python package with an application programming interface, the latter of which can be used interactively to write complex, reproducible scripts and implement a suite of downstream analysis tools.ipyrad is a free and open source program written in Python. Source code is available from the GitHub repository (https://github.com/dereneaton/ipyrad/), and Linux and MacOS installs are distributed through the conda package manager. Complete documentation, including numerous tutorials, and Jupyter notebooks demonstrating example assemblies and applications of downstream analysis tools are available online: https://ipyrad.readthedocs.io/.}},
  doi              = {10.1093/bioinformatics/btz966},
  eprint           = {https://academic.oup.com/bioinformatics/advance-article-pdf/doi/10.1093/bioinformatics/btz966/31875323/btz966.pdf},
  file             = {:C\:/Users/ricop/OneDrive/Documentos/DOC/PROJETO\_DOC/PAPERS_SUPORTE_TESE/EatonOvercast2020.pdf:PDF},
  modificationdate = {2024-07-27T11:02:29},
  url              = {https://doi.org/10.1093/bioinformatics/btz966},
}

@Comment{jabref-meta: databaseType:bibtex;}

Temos também um arquivo csl com normas da ABNT. Baixe-o por meio do endereço abaixo:

<?xml version="1.0" encoding="utf-8"?>
<style xmlns="http://purl.org/net/xbiblio/csl" version="1.0" class="in-text" demote-non-dropping-particle="never" default-locale="pt-BR">
  <!--Em caso de sobrenome composto, este nao sera desmontado para a montagem da citacao ou bibliografia como no caso de L. Van Der Pijl-->
  <info>
    <title>Associação Brasileira de Normas Técnicas (Português - Brasil)</title>
    <title-short>ABNT</title-short>
    <id>http://www.zotero.org/styles/associacao-brasileira-de-normas-tecnicas</id>
    <link href="http://www.zotero.org/styles/associacao-brasileira-de-normas-tecnicas" rel="self"/>
    <link href="https://forums.zotero.org/discussion/22148/how-to-apply-disambiguation-in-citation-just-when-works-of-different-authors-are-in-the-same-year/?Focus=147094#Comment_147094" rel="documentation"/>
    <author>
      <name>Juliana Geyna Régis</name>
      <email>juliana.regis@ipea.gov.br</email>
    </author>
    <contributor>
      <name>Lucas Mation</name>
      <email>lucas.mation@ipea.gov.br</email>
    </contributor>
    <contributor>
      <name>Eduardo Michelotti Bettoni</name>
      <email>webtur@ufpr.br</email>
    </contributor>
    <contributor>
      <name>Paulo Augusto Nascimento</name>
      <email>paulo.nascimento@ipea.gov.br</email>
    </contributor>
    <contributor>
      <name>Iuri Gavronski</name>
      <email>iuri at ufrgs dot br</email>
    </contributor>
    <contributor>
      <name>José Antonio Meira da Rocha</name>
      <email>joseantoniorocha@gmail.com</email>
      <uri>http://meiradarocha.jor.br</uri>
    </contributor>
    <contributor>
      <name>Mario José</name>
      <email>gnumario [at-mark] gmail [dot-mark] com</email>
    </contributor>
    <category citation-format="author-date"/>
    <category field="generic-base"/>
    <summary>The Brazilian Standard Style in accordance with ABNT-NBR 10520.2002 and ABNT-NBR 6023.2002</summary>
    <updated>2022-07-11T17:15:26+00:00</updated>
    <rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
  </info>
  <locale xml:lang="pt-BR">
    <terms>
      <!--Abreviacoes meses "Forma Curta"-->
      <term name="month-01" form="short">jan.</term>
      <term name="month-02" form="short">fev.</term>
      <term name="month-03" form="short">mar.</term>
      <term name="month-04" form="short">abr.</term>
      <term name="month-05" form="short">maio</term>
      <term name="month-06" form="short">jun.</term>
      <term name="month-07" form="short">jul.</term>
      <term name="month-08" form="short">ago.</term>
      <term name="month-09" form="short">set.</term>
      <term name="month-10" form="short">out.</term>
      <term name="month-11" form="short">nov.</term>
      <term name="month-12" form="short">dez.</term>
      <!--Os termos abaixo serao utilizados quando houverem nomes de editores. Apos a citacao dos nomes, eles irao aparecer entre parenteses.-->
      <term name="editor" form="short">
        <single>ed</single>
        <multiple>eds</multiple>
      </term>
      <term name="container-author" form="short">
        <single>ed</single>
        <multiple>eds</multiple>
      </term>
      <term name="collection-editor" form="short">
        <single>ed</single>
        <multiple>eds</multiple>
      </term>
    </terms>
  </locale>
  <!--A macro 'container-contribuitor' e responsavel por mostrar os nomes dos editores, serao apresentados SOBRENOME, INICIAIS PRENOMES 
tendo as inicias separadas por ponto.-->
  <macro name="container-contributors">
    <choose>
      <if type="chapter">
        <names variable="container-author" delimiter=", ">
          <name name-as-sort-order="all" sort-separator=", " initialize-with=". " delimiter="; " delimiter-precedes-last="always">
            <name-part name="family" text-case="uppercase"/>
            <name-part name="given" text-case="uppercase"/>
          </name>
          <label form="short" prefix=" (" suffix=".)" text-case="capitalize-first"/>
          <substitute>
            <names variable="editor"/>
            <names variable="collection-editor"/>
          </substitute>
        </names>
      </if>
    </choose>
  </macro>
  <!--A macro 'secundary-contribuitor' e responsavel por mostrar os nomes dos organizadores, serao apresentados SOBRENOME, INICIAIS PRENOMES
tendo as inicias separadas por ponto.-->
  <macro name="secondary-contributors">
    <choose>
      <if type="chapter" match="none">
        <names variable="editor" delimiter="; " prefix=" (" suffix=")">
          <name initialize-with=". " delimiter=", "/>
          <label form="short" prefix=", " text-case="capitalize-first" suffix="."/>
        </names>
      </if>
    </choose>
  </macro>
  <!--A macro 'translator' e responsavel por mostrar os nomes dos tradutores, serao apresentados SOBRENOME, INICIAIS PRENOMES
tendo as inicias separadas por ponto. -->
  <macro name="translator">
    <names variable="translator" delimiter="; ">
      <name delimiter="; " sort-separator=" " delimiter-precedes-last="always" prefix="Tradução: ">
        <name-part name="given" text-case="capitalize-first"/>
        <name-part name="family" text-case="capitalize-first"/>
      </name>
    </names>
  </macro>
  <!--A macro 'author' e responsavel por mostrar os nomes dos autores na bibliografia, serao no formato SOBRENOME, INICIAIS PRENOMES, tendo 
as inicias separadas por ponto. Quando houver mais de tres autores, somente o primeiro sera mostrado e no lugar dos outros
aparecera a expess o 'et. al.'. Na regra da ABNT essa expressao deve aparecer em fonte normal-->
  <macro name="author">
    <names variable="author">
      <name name-as-sort-order="all" sort-separator=", " initialize-with=". " delimiter="; " delimiter-precedes-last="always">
        <name-part name="family" text-case="uppercase"/>
        <name-part name="given" text-case="uppercase"/>
      </name>
      <label form="short" prefix=" (" suffix=".)" text-case="uppercase"/>
      <substitute>
        <names variable="editor"/>
        <names variable="translator"/>
        <text macro="title"/>
      </substitute>
    </names>
  </macro>
  <!--A macro 'author-short' e responsavel por mostrar os nomes dos autores na citacao (no meio do texto). Nela aparecera apenas o ultimo nome
do autor. Na regra da ABNT o sobrenome deve aparecer com todas as letras em caixa alta-->
  <macro name="author-short">
    <names variable="author">
      <name form="short" name-as-sort-order="all" sort-separator=", " initialize-with=". " delimiter="; " delimiter-precedes-last="never">
        <name-part name="family" text-case="uppercase"/>
        <name-part name="given" text-case="uppercase"/>
      </name>
      <substitute>
        <names variable="editor"/>
        <names variable="translator"/>
        <choose>
          <if type="book">
            <text variable="title" form="short"/>
          </if>
          <else>
            <text variable="title" form="short" quotes="true"/>
          </else>
        </choose>
      </substitute>
    </names>
  </macro>
  <!--A macro 'access' e utilizada em arquivos de paginas da web. Ela e responsavel por mostrar a URL do site pesquisado e a data do acesso-->
  <macro name="access">
    <text variable="URL" prefix="Disponível em: &lt;" suffix="&gt;"/>
    <date variable="accessed" prefix=". Acesso em: ">
      <date-part name="day" suffix=" "/>
      <date-part name="month" form="short" suffix=". " text-case="lowercase"/>
      <date-part name="year"/>
    </date>
  </macro>
  <!--A macro 'title' e responsavel por mostrar o titulo principal do arquivo. Em todos os tipos ele aparecera em negrito logo apos os nomes dos
autores, exceto em arquivos do tipo 'artigo de jornal, artigo de revista, artigo de periodico', nesses arquivos eles irao aparecer em fonte normal.-->
  <macro name="title">
    <choose>
      <if type="chapter bill" match="any">
        <text variable="title"/>
      </if>
      <else-if type="book thesis" match="any">
        <text variable="title" font-weight="bold"/>
      </else-if>
      <else-if type="article-newspaper article-magazine article-journal" match="any">
        <text variable="title"/>
      </else-if>
      <else>
        <text variable="title" font-weight="bold"/>
      </else>
    </choose>
  </macro>
  <!-- Titulo dos Anais-->
  <macro name="container-title">
    <choose>
      <if type="paper-conference" match="any">
        <text variable="container-title" suffix=". "/>
        <text value="Anais" font-weight="bold"/>
        <text value="..."/>
      </if>
      <else>
        <text variable="container-title" font-weight="bold"/>
      </else>
    </choose>
  </macro>
  <!--A macro 'publisher' e responsavel por mostrar o nome da editora responsavel pela publicacao-->
  <macro name="publisher">
    <choose>
      <if match="any" variable="publisher-place publisher">
        <choose>
          <if variable="publisher-place">
            <text variable="publisher-place" suffix=": "/>
          </if>
          <else-if type="entry-encyclopedia"/>
          <else>
            <text value="[s.l.] "/>
          </else>
        </choose>
        <choose>
          <if variable="publisher">
            <text variable="publisher" suffix=", "/>
            <text macro="issued"/>
          </if>
          <else>
            <text value="[s.n.]"/>
          </else>
        </choose>
      </if>
      <else>
        <text value="[s.l: s.n.]"/>
      </else>
    </choose>
  </macro>
  <!--A macro 'event' sera utilizada em arquivos do tipo Evento/Conferencia. Ela e responsavel por mostrar o nome da conferencia, que tera formatacao
em caixa alta. Utiliza-se antes do nome da conferencia a expressao "In". Segundo a regra da ABNT ela deve ser em fonte normal-->
  <macro name="event">
    <choose>
      <if variable="event">
        <choose>
          <if variable="genre" match="none">
            <text term="in" text-case="capitalize-first" suffix=": "/>
            <text variable="event" text-case="uppercase"/>
          </if>
          <else>
            <group delimiter=" ">
              <text variable="genre" text-case="capitalize-first"/>
              <text term="presented at"/>
              <text variable="event"/>
            </group>
          </else>
        </choose>
      </if>
    </choose>
  </macro>
  <!--A macro 'issued' e utilizada quando devemos mostrar a data completa exemplo: 03 mar. 2011.-->
  <macro name="issued">
    <choose>
      <if variable="issued" match="any">
        <group>
          <choose>
            <if type="book chapter" match="none">
              <date variable="issued">
                <date-part name="day" suffix=" "/>
                <date-part name="month" form="short" suffix=" "/>
              </date>
            </if>
          </choose>
          <date variable="issued">
            <date-part name="year"/>
          </date>
        </group>
      </if>
      <else>
        <text value="[s.d.]"/>
      </else>
    </choose>
  </macro>
  <!--A macro 'issued' e utilizada quando desejamos que apareca apenas o ano-->
  <macro name="issued-year">
    <choose>
      <if variable="issued" match="any">
        <date variable="issued">
          <date-part name="year"/>
        </date>
      </if>
      <else>
        <text value="[s.d.]"/>
      </else>
    </choose>
  </macro>
  <!--A macro 'edition' e responsavel por mostrar o numero da edicao.-->
  <macro name="edition">
    <choose>
      <!--Se for capitulo de livro aparecera somente o numero-->
      <if type="book chapter" match="any">
        <choose>
          <if is-numeric="edition">
            <group delimiter=" ">
              <number variable="edition" form="numeric" suffix="."/>
              <text term="edition" form="short" suffix="."/>
            </group>
          </if>
          <else>
            <!--Se for outro tipo de documento aparera o numero e depois a descricao "ed."-->
            <text variable="edition" suffix=" ed."/>
          </else>
        </choose>
      </if>
    </choose>
  </macro>
  <!--A macro 'locators'tem como funcao mostrar os dados complementares do arquivo (paginas, secao, volume, etc)-->
  <macro name="locators">
    <choose>
      <!--Se for projeto de lei mostrara o dia, mes "forma curta", ano, secao "Sec." e pagina "p."-->
      <if type="bill">
        <group prefix=". " delimiter=", ">
          <date variable="issued">
            <date-part name="day"/>
            <date-part prefix=" " name="month" form="short"/>
            <date-part prefix=" " name="year"/>
          </date>
          <text variable="section" prefix="Sec. "/>
          <text variable="page" prefix="p. " suffix="."/>
        </group>
      </if>
      <!--Se for artigos de jornal, revista, etc. Aparecera o volume "v.", edicao "n." e a pagina do artigo "p."-->
      <else-if match="any" type="article-journal article-magazine article-newspaper">
        <group delimiter=", ">
          <group delimiter=", ">
            <text variable="volume" prefix="v. "/>
            <text variable="issue" prefix="n. "/>
          </group>
          <text variable="page" prefix="p. "/>
        </group>
      </else-if>
      <!--Se for capitulo de livro aparecera o volume "v." e a pagina "p."-->
      <else-if match="any" type="book chapter">
        <group delimiter=", ">
          <group>
            <text variable="volume" prefix="v. "/>
            <text variable="page" prefix="p. "/>
          </group>
        </group>
      </else-if>
    </choose>
  </macro>
  <macro name="collection-title">
    <text variable="collection-title"/>
    <text variable="collection-number" prefix=" "/>
  </macro>
  <macro name="genre">
    <text variable="genre"/>
  </macro>
  <macro name="citation-locator">
    <group>
      <label variable="locator" form="short"/>
      <text variable="locator" prefix=" "/>
    </group>
  </macro>
  <macro name="place">
    <choose>
      <if match="any" variable="publisher-place">
        <text variable="publisher-place"/>
      </if>
    </choose>
  </macro>
  <macro name="archive">
    <group>
      <text variable="archive" prefix=" "/>
    </group>
  </macro>
  <!--Citacao-->
  <!--et al. aparece a partir de 04 autores-->
  <citation et-al-min="4" et-al-use-first="1" collapse="year" disambiguate-add-year-suffix="true">
    <sort>
      <key macro="author"/>
      <!--Puxa o autor primeiro-->
      <key variable="issued"/>
      <!--Depois o ano-->
    </sort>
    <layout prefix="(" suffix=")" delimiter="; ">
      <!--Entre parenteses separando os autores com ponto-e-virgula-->
      <group>
        <text suffix=", " macro="author-short"/>
        <!--Seperando os autores das datas usando virgula-->
        <text macro="issued-year"/>
        <text prefix=", " macro="citation-locator"/>
      </group>
    </layout>
  </citation>
  <!--Bibliografia-->
  <!--et al. aparece a partir de 04 autores-->
  <bibliography hanging-indent="false" et-al-min="4" et-al-use-first="1" entry-spacing="1">
    <sort>
      <key macro="author"/>
      <!--Puxa o autor primeiro-->
      <key variable="issued"/>
      <!--Depois o ano-->
    </sort>
    <layout>
      <choose>
        <!--Projeto de lei-->
        <if type="bill">
          <group>
            <text macro="author" suffix=". "/>
            <!--autor-->
            <text variable="number" suffix=". "/>
            <!--Numero da lei-->
            <text macro="title" suffix=". "/>
            <!--Titulo-->
            <text variable="references" font-weight="bold"/>
            <!--Historico em negrito-->
            <text variable="note"/>
            <!--Campo 'extra' caso queira colocar alguma observacao-->
            <text macro="locators" suffix=". "/>
            <!--Dados complementares "secao, pagina"-->
          </group>
        </if>
        <!--Mapa-->
        <else-if type="map">
          <group>
            <text macro="author" suffix=". "/>
            <!--autor-->
            <text macro="title" suffix=", "/>
            <!--Titulo-->
            <text macro="issued" suffix=". "/>
            <!--data-->
            <text variable="note" suffix=". "/>
            <!--Campo 'extra' caso queira colocar alguma observacao-->
          </group>
        </else-if>
        <!--Livro-->
        <else-if type="book">
          <group>
            <text macro="author" suffix=". "/>
            <!--autor-->
            <text macro="title" suffix=". "/>
            <!--Titulo-->
            <text macro="translator" suffix=". "/>
            <!--Traducao-->
            <text macro="edition" suffix=". "/>
            <!--Edicao-->
            <text macro="publisher" suffix=". "/>
            <!--Local, data, etc-->
            <text macro="locators"/>
            <!--Dados complementares "pagina, volume"-->
          </group>
        </else-if>
        <!--Conferencia-->
        <else-if type="chapter">
          <group>
            <text macro="author" suffix=". "/>
            <!--autor-->
            <text macro="title" suffix=". "/>
            <!--Titulo-->
            <text macro="secondary-contributors" suffix=". "/>
            <text term="in" text-case="capitalize-first" suffix=": "/>
            <!--In:-->
            <text macro="container-contributors" suffix=". "/>
            <!--Nomes de editores-->
            <text macro="container-title" suffix=". "/>
            <!--Titulo da conferencia-->
            <text variable="collection-title" suffix=". "/>
            <text macro="translator" suffix=". "/>
            <!--Traducao-->
            <text macro="edition" suffix=". "/>
            <!--Edicao-->
            <text macro="publisher" suffix=". "/>
            <!--Local, data, etc-->
            <text macro="locators" suffix=". "/>
            <!--Dados complementares "pagina, volume"-->
          </group>
        </else-if>
        <!--Artigo de revista, jornal, etc-->
        <else-if type="article-newspaper article-magazine article-journal" match="any">
          <group>
            <text macro="author" suffix=". "/>
            <!--Autor-->
            <text macro="title" suffix=". "/>
            <!--Titulo do artigo-->
            <text macro="container-title" suffix=", "/>
            <!--Titulo da publicacao-->
            <text variable="collection-title" suffix=". "/>
            <!--Titulo da serie-->
            <text macro="edition" suffix=", "/>
            <!--Edicao-->
            <text macro="locators" suffix=", "/>
            <!--Dados complementares "pagina, volume"-->
            <text macro="issued" suffix=". "/>
            <!--Data-->
          </group>
        </else-if>
        <!--Tese-->
        <else-if type="thesis">
          <group>
            <text macro="author" suffix=". "/>
            <!--Autor-->
            <text macro="title" suffix=". "/>
            <!--Titulo-->
            <text macro="genre" suffix="&#8212;"/>
            <!--Tipo-->
            <text macro="publisher" suffix="."/>
            <!--Local, data, etc-->
          </group>
        </else-if>
        <!-- Nao ha norma ABNT para manuscritos -->
        <else-if type="manuscript">
          <group>
            <text macro="author" suffix=". "/>
            <!--Autor-->
            <text macro="title" suffix=". "/>
            <!--Titulo-->
            <text macro="edition" suffix=". "/>
            <!--Edicao-->
            <text macro="place" suffix=", "/>
            <text macro="issued" suffix=". "/>
            <!--Data-->
            <text macro="access" suffix=". "/>
            <!--URL, data do acesso-->
            <text macro="archive" suffix=". "/>
            <!--Arquive-->
          </group>
        </else-if>
        <!--Pagina da WEB-->
        <else-if type="webpage">
          <group>
            <text macro="author" suffix=". "/>
            <!--Autor-->
            <text macro="title" suffix=". "/>
            <!--Titulo-->
            <text macro="genre" suffix=". "/>
            <text macro="access" suffix=". "/>
            <!--URL, data do acesso-->
          </group>
        </else-if>
        <!--Relatorio-->
        <else-if type="report">
          <group>
            <text macro="author" suffix=". "/>
            <!--Autor-->
            <text macro="title"/>
            <!--Titulo-->
            <text macro="container-contributors"/>
            <!--Nomes de editores-->
            <text macro="secondary-contributors"/>
            <text macro="container-title"/>
            <!--Titulo da publicacao-->
            <text variable="collection-title" prefix=": "/>
            <text macro="locators"/>
            <!--Dados complementares "pagina, volume"-->
            <text macro="event"/>
            <!--Nome do evento, conferencia-->
            <text macro="publisher" prefix=". " suffix=". "/>
            <!--Local, data, etc-->
            <text macro="access" suffix="."/>
            <!--URL, data do acesso-->
          </group>
        </else-if>
        <!--Texto para Discussao (Verbete de Dicionario)-->
        <else-if type="entry-dictionary">
          <group>
            <text macro="author" suffix=". "/>
            <!--Autor-->
            <text macro="title"/>
            <!--Titulo-->
            <text macro="container-contributors"/>
            <!--Nomes de editores-->
            <text macro="secondary-contributors"/>
            <text macro="container-title"/>
            <!--Titulo da publicacao-->
            <text variable="collection-title" prefix=": " suffix=". "/>
            <text macro="locators"/>
            <!--Dados complementares "pagina, volume"-->
            <text macro="event"/>
            <!--Nome do evento, conferencia-->
            <text macro="publisher" prefix=". " suffix=". "/>
            <!--Local, data, etc-->
            <text macro="collection-title" prefix="(Texto para discussao, n. " suffix=")."/>
            <text macro="access"/>
            <!--URL, data do acesso-->
          </group>
        </else-if>
        <!--Nota Tecnica (Verbete de Enciclopedia)-->
        <else-if type="entry-encyclopedia">
          <group>
            <text macro="author" suffix=". "/>
            <!--Autor-->
            <text macro="title"/>
            <!--Titulo-->
            <text variable="publisher-place" prefix=". " suffix=": "/>
            <!--Local-->
            <text variable="publisher" suffix=", "/>
            <!--Editor-->
            <text macro="issued" prefix=", " suffix=". (Nota técnica)."/>
            <!--Data-->
          </group>
        </else-if>
        <else-if type="paper-conference">
          <text macro="author" suffix=". "/>
          <!--Autor-->
          <text macro="title" suffix=". "/>
          <!--Titulo-->
          <text macro="container-contributors"/>
          <!--Nomes de editore-->
          <text macro="secondary-contributors"/>
          <text macro="container-title"/>
          <!--Titulo da publicacao-->
          <text variable="collection-title" prefix=": " suffix="."/>
          <text macro="locators"/>
          <!--Dados complementares "pagina, volume"-->
          <group delimiter=". " prefix=". " suffix=". ">
            <text macro="event"/>
            <!--Nome do evento, conferencia-->
          </group>
          <text variable="publisher-place" suffix=": "/>
          <!--Local-->
          <text variable="publisher" suffix=", "/>
          <!--Editor-->
          <text macro="issued" suffix=". "/>
          <!--Data-->
          <text macro="access"/>
          <!--URL, data do acesso-->
        </else-if>
        <else>
          <text macro="author" suffix=". "/>
          <!--Autor-->
          <text macro="title" suffix=". "/>
          <!--Titulo-->
          <text macro="container-contributors"/>
          <!--Nomes de editore-->
          <text macro="secondary-contributors"/>
          <text macro="container-title"/>
          <!--Titulo da publicacao-->
          <text variable="collection-title" prefix=": " suffix="."/>
          <text macro="locators"/>
          <!--Dados complementares "pagina, volume"-->
          <group delimiter=". " prefix=". " suffix=". ">
            <text macro="event"/>
            <!--Nome do evento, conferencia-->
          </group>
          <text variable="publisher-place"/>
          <!--Local-->
          <text variable="publisher" suffix=", "/>
          <!--Editor-->
          <text macro="issued" prefix=", " suffix=". "/>
          <!--Data-->
          <text macro="access"/>
          <!--URL, data do acesso-->
        </else>
      </choose>
    </layout>
  </bibliography>
</style>