-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcitation.html
More file actions
27 lines (25 loc) · 815 Bytes
/
citation.html
File metadata and controls
27 lines (25 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<style>
/*____Create and format infobox____*/
.infobox {
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
border: 2px solid orange;
border-radius: 10px;
background: #F2F2F2 5px center/3em no-repeat;
}
.BookCover {
background-image: url("images/Cover_1.png");
background-size: 2em;
background-position: 1em center;
}
</style>
<br>
<div class="infobox BookCover">
<strong>Citar como:</strong><br>
Ferreira, Arthur de Sá. Ciência com R: Perguntas e respostas para pesquisadores e analistas de dados. Rio de Janeiro: 1a edição,
<span id="citation"></span>
<script>
const year = new Date().getFullYear();
document.getElementById("citation").innerHTML = `${year}. <a href="https://doi.org/10.5281/zenodo.8320232">doi: 10.5281/zenodo.8320232</a>`;
</script>
</div>