-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No Bibliography #21
Comments
Same problem here with doxygen 1.8.8. The bibliography in pdf via latex is fine and also worked fine before I used this bootstrap theme.
A similar problem is that certain sections like |
I have very little experience with css and basically no clue of $('.contents > .textblock > dl').remove(); After commenting it out, I get back the bibliography, I found this workaround, the clean but tedious way would be to expand /* todo list */
var todoelements = $('.contents > .textblock > dl.reflist > dt, .contents > .textblock > dl.reflist > dd');
for (var i = 0; i < todoelements.length; i += 2) {
$('.contents > .textblock').append(
'<div class="panel panel-default active">'
+ "<div class=\"panel-heading todoname\">" + $(todoelements[i]).html() + "</div>"
+ "<div class=\"panel-body\">" + $(todoelements[i+1]).html() + "</div>"
+ '</div>');
}
$('.contents > .textblock > dl').remove(); |
If I use the theme my whole Bibliography vanishes. The references are fine and linking to the empty Bibliography. If I remove header, footer, extra_stylesheet and extra_files the Bibliography is available.
Doxygen-version: 1.8.11
The text was updated successfully, but these errors were encountered: