I'm trying to use \cite
in Doxygen to produce a bibliography page and also a reference within my text. I have bibtex in my search path and a proper .bib
file. I have added the .bib file to CITE_BIB_FILES
and am using a proper BibTex label found in the .bib
file. Doxygen is creating a bibliography page, but it is empty. It is also creating a citation link in the documentation text, but the link is also empty. Any idea how I can get the citation info displayed?
I was facing the same problem. There is an perl dependency to generate citation. So you must have both perl and bibtex in the system path.
Ignore the example above, that only applies to Latex, for doxygen use (Note: no braces):
\cite Hale
The .bib file has to be located in doxygen working directory.
Bibliographic References HTML page will be then produced by doxygen with:
[1]J. K. Hale. Theory of functional–differential equations. Springer–Verlag, Berlin–Heidelberg–New York, 1977.
for the following bib entry:
@BOOK{Hale, author = "J. K. Hale", title = "Theory of functional--differential equations", publisher = "Springer--Verlag, Berlin--Heidelberg--New York", year = 1977 }
In order for \cite
to work properly you need:
file.bib
in the working directory where you call doxygen Doxyfile
bibtex
executable must be in the search pathperl
executable must be in the search pathRefName
used in \cite RefName
must have a corresponding entry in file.bib
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With