LaTeXTools icon indicating copy to clipboard operation
LaTeXTools copied to clipboard

ScriptBuilder fails to generate bbl multibib

Open Fratorhe opened this issue 2 years ago • 0 comments

Hi,

First, I would like to thank you for this amazing work.

I am currently working on a document which uses multibib. I decided to setup a scriptbuilder to compile it as follows:

"builder_settings": {
  "windows": {
  "script_commands": [
  "pdflatex -synctex=1 -interaction=nonstopmode",
  "bibtex RD.aux",
  "bibtex AD.aux",
  "pdflatex -synctex=1 -interaction=nonstopmode",
  "pdflatex -synctex=1 -interaction=nonstopmode",
 ]
 }

However, bibtex does not generate the appropriate bbl file to be included in the successive pdflatex calls. The console shows the following:

ScriptBuilder: Invoking 'pdflatex -synctex=1 -interaction=nonstopmode main'... done. Invoking 'bibtex RD.aux main'... done. Invoking 'bibtex AD.aux main'... done. Invoking 'pdflatex -synctex=1 -interaction=nonstopmode main'... done. Invoking 'pdflatex -synctex=1 -interaction=nonstopmode main'... done.

I have the feeling there is something wrong with the way bibtex is being called as these main keywords are being added automatically to the command.

When I run directly bibtex RD.aux from terminal, it works well, and it generates the bbl files.

Do you have any suggestions on this?

Regards, Francisco

Fratorhe avatar May 09 '22 12:05 Fratorhe