-
Notifications
You must be signed in to change notification settings - Fork 366
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
Bibliography doesn't get printed when using biblatex and \nocite{*} #1565
Comments
I suppose you would need to add another elif in there? if CITATIONS_REGEX.search(self.out):
run_bibtex = True
# are we using biblatex?
m = BIBLATEX_REGEX.search(self.out)
if m:
bibtex = m.group(1).lower()
if bibtex == 'biber':
use_bibtex = False
# check for natbib as well
elif (
'Package natbib Warning: There were undefined citations'
in self.out):
run_bibtex = True The .log contains:
So perhaps matching either |
Doesn't look like anyone's tried their hand at this yet. If there's anyone assigning issues still, I'd like to take this. If not, I suppose I'll just take it on anyways. |
I had the same problem, "\nocite{}" doesnt work properly, i find a solution doing \nocite{"some of your reference"} |
I have a document which doesn't use any citations, but has a list of references that should be printed. However, even when using
\nocite{*}
, biber does not get run by the basic builder. Here's a MWE:test.tex
test.bib
Running it with the basic builder generates a pdf that only contains the text "Test." with the warning "LaTeX Warning: Empty bibliography on input line 10." It doesn't seem to matter where I put the
\nocite{*}
(biblatex lets you put it in the preamble, that also doesn't work).A workaround is to insert an actual
\cite{}
, compile, remove the\cite{}
and compile again, but it would be nice if this just worked.The text was updated successfully, but these errors were encountered: