docs: add References through BibTeX Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
diff --git a/docs/conf.py b/docs/conf.py index ba4b171..77aadb4 100644 --- a/docs/conf.py +++ b/docs/conf.py
@@ -65,8 +65,12 @@ 'sphinx.ext.napoleon', 'sphinx.ext.todo', 'sphinxcontrib_hdl_diagrams', + 'sphinxcontrib.bibtex', ] +bibtex_default_style = 'plain' +bibtex_bibfiles = ['refs.bib'] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']
diff --git a/docs/index.rst b/docs/index.rst index 828ea9b..3261a63 100644 --- a/docs/index.rst +++ b/docs/index.rst
@@ -24,7 +24,7 @@ contributing partners - + references Welcome to SkyWater SKY130 PDK's documentation!
diff --git a/docs/references.rst b/docs/references.rst new file mode 100644 index 0000000..4563312 --- /dev/null +++ b/docs/references.rst
@@ -0,0 +1,8 @@ +.. _References: + +References +########## + +.. bibliography:: + :notcited: + :labelprefix: R
diff --git a/docs/refs.bib b/docs/refs.bib new file mode 100644 index 0000000..5d605d1 --- /dev/null +++ b/docs/refs.bib
@@ -0,0 +1,6 @@ +@Online{SkyWaterPDKIntro_Edwards21, + author = {Edwards, Tim}, + title = {{Introduction to the SkyWater PDK: The New Age of Open Source Silicon}}, + url = {https://isn.ucsd.edu/courses/beng207/lectures/Tim_Edwards_2021_slides.pdf}, + year = {2021}, +}
diff --git a/docs/requirements.txt b/docs/requirements.txt index 056d192..4605163 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt
@@ -3,6 +3,7 @@ docutils sphinx sphinx-autobuild +sphinxcontrib-bibtex # Verilog domain sphinx-verilog-domain