Modelo com referências bibliográficas no formato do Bibtex

This commit is contained in:
Jurandy Soares
2026-03-17 15:52:26 -03:00
parent fb651ef254
commit 3311fe18ef
9 changed files with 112 additions and 13 deletions
+10
View File
@@ -0,0 +1,10 @@
(aula:2026-03-12)=
# Aula de 12/03/2026
Apresentação da disciplina.
De acordo com {cite:t}`1987:nelson`. Isto também pode ser visto em outras fontes {cite:p}`1987:nelson`. Um livro muito bom é o do {cite:t}`kurose2013redes`.
Veja também a {rfc}`1180`, Um Tutorial do TCP/IP.
+3 -2
View File
@@ -2,7 +2,7 @@
# Aulas
:::{toctree}
```{toctree}
---
maxdepth: 2
caption: Sumário
@@ -10,5 +10,6 @@ glob: true
---
*/*
:::
```
+18 -8
View File
@@ -15,7 +15,8 @@ release = 'ANO_PERIODO'
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
'myst_parser'
'myst_parser',
'sphinxcontrib.bibtex',
]
templates_path = ['_templates']
@@ -44,13 +45,22 @@ myst_links_external_new_tab = True
myst_number_code_blocks = ['Python', 'Bash']
myst_heading_anchors = 3
myst_enable_extensions = {
"colon_fence": True,
"dolarmath": True,
"deflist": True,
"linkify": True,
"replacements": True,
"strikethrough": True,
"tasklist": True,
#"colon_fence": True,
# "dolarmath": True,
# "deflist": True,
# "linkify": True,
# "replacements": True,
# "strikethrough": True,
# "tasklist": True,
}
bibtex_bibfiles = ['refs.bib']
# Opcional: Definir o estilo da bibliografia (alpha, plain, unsrt, unsrtalpha)
# bibtex_default_style = 'alpha'
# Estilo Etiqueta (Citação) Ordenação da Bibliografia
# plain Numérica [1] Alfabética por autor.
# unsrt Numérica [1] Ordem de aparição no texto.
# alpha Alfanumérica [Nel87] Alfabética por autor.
# unsrtalpha Alfanumérica [Nel87] Ordem de aparição no texto.
+3 -2
View File
@@ -1,6 +1,6 @@
# DOCE
:::{toctree}
```{toctree}
---
maxdepth: 2
caption: Sumário
@@ -8,5 +8,6 @@ glob: true
---
aulas/index.md
:::
referencias.md
```
+9
View File
@@ -0,0 +1,9 @@
# Referências bibliográficas
```{bibliography}
---
style: alpha
---
```
+15
View File
@@ -0,0 +1,15 @@
@book{1987:nelson,
author = {Edward Nelson},
title = {Radically Elementary Probability Theory},
publisher = {Princeton University Press},
year = {1987}
}
@book{kurose2013redes,
title={Redes de computadores e a internet: uma abordagem top-down},
author={Kurose, J.F. and Ross, K.W.},
isbn={978-85-8143-677-7},
year={2013},
publisher={Pearson}
}