You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I introduced some local bibliographies in my Jupyter book by inserting at the end of each chapter,
## Bibliography
```{bibliography}
:filter: docname in docnames
```
The bibliography renders as expected in the HTML output but not in the PDF output, where the bibliography is still collected at the end of the document, while the headers (## Bibliography) keep appearing at the end of each chapter without any content inside.
Is this a known issue? Is there a workaround?
Thanks!
The text was updated successfully, but these errors were encountered:
thanks for reporting this @raptistasos. I think the main issue here is that bibliography support in LaTeX relies on Tex (i.e. pdflatex or xelatex etc.) to build the bibliographies through the use of tags. The sphinx.writer is adding \bibliography at the end of the document to be populated by tex.
Do you know the tex you would use to actually implement this in a LaTeX document?
@AakashGfude this is something we may need to support in this extension (similar to the table of contents issue)
However, I am not sure if it is compatible with the way that sphinx.writer is adding the bibliography as it dismantles the .bib file and adds any references directly into the .tex file.
Hi!
I introduced some local bibliographies in my Jupyter book by inserting at the end of each chapter,
The bibliography renders as expected in the HTML output but not in the PDF output, where the bibliography is still collected at the end of the document, while the headers (## Bibliography) keep appearing at the end of each chapter without any content inside.
Is this a known issue? Is there a workaround?
Thanks!
The text was updated successfully, but these errors were encountered: