DocumenterCitations.jl
DocumenterCitations.jl copied to clipboard
DocumenterCitations.jl uses Bibliography.jl to add support for BibTeX citations and references in documentation pages generated by Documenter.jl.
Via @odow: It would be nice if the bibliography block could provide backlinks to where the reference was cited in the document. This would likely require a fourth pass: 1....
In this section https://juliadocs.org/DocumenterCitations.jl/stable/syntax/#Citations-in-docstrings there is a very nice description, that I already follow in my docs as well. In html this looks really nice. Would it be possible to...
Clicking on a citation takes the reader out the current context, as it generally links to the References page of the project. Even though the browser's back button will return...
At least some markdown syntax that might occur in a BibTeX entry is not properly escaped by the internal `tex_to_markdown` function: ```julia julia> import DocumenterCitations: tex_to_markdown julia> tex_to_markdown("arXiv: [1210.2145](https://arxiv.org/abs/1210.2145)") "arXiv:...
I followed [this part of the documentation](https://juliadocs.org/DocumenterCitations.jl/stable/syntax/#Order-of-references) to try to get the list of references sorted in a name-year-title manner, but it seems that when using `:numeric` all _cited_ references...
Following up on https://github.com/ali-ramadhan/DocumenterCitations.jl/issues/22#issuecomment-719887389, it could be nice to support arbitrary [CSL styles](https://citationstyles.org). Even though personally, I'm happy with the [new built-in styles](https://juliadocs.org/DocumenterCitations.jl/dev/gallery/), I just want to give an outline...
From https://discourse.julialang.org/t/ann-documentercitations-v1-0-0/101562/6 I'm not exactly sure what the use case is for this, but it would certainly be easy to implement. The most straightforward syntax for showing all references in...
In a project implementing multiple papers' algorithms, the original bibtex files are served as assets. But they can also be used to create references. The approach I tried was ```julia...
Hi, we are using DocumenterCitations a lot and it is super great. I had a problem with the links to the literature that I could never narrow down. Today I...
Follow up from https://github.com/JuliaDocs/DocumenterCitations.jl/issues/78 With the script ```julia using DocumenterCitations bib = CitationBibliography("bug.bib") DocumenterCitations.format_bibliography_reference(bib.style, bib.entries["key"]) ``` For ```bibtex @misc{key, author = {{\"U}nl{\"u}, {\c C}a{\u g}lar}, } ``` I get ```julia...