Bibtopic mit Latexmk

Bibtopic mit Latexmk

Beim Versuch, das folgende Dokument mit latexmk zu kompilieren, erhalte ich die folgende Warnung:

latexmk -cd -f -pdf -interaction=nonstopmode -synctex=1 minimal.tex

Package bibtopic Warning: Please (re)run BibTeX on the file(s):
(bibtopic)                minimal1
(bibtopic)                and after that rerun LaTeX.

Wie teile ich latexmk mit, dass es bibtex auf den Dateien ausführen soll, die generiert werden vonBibtopic?

\documentclass{article}
\usepackage{bibtopic}
\usepackage{natbib}

\begin{document}
\citet{GTG}

\bibliographystyle{plainnat}
\begin{btSect}{reports}
    \section{Reports}
    \btPrintCited
\end{btSect}


\end{document}

BEARBEITEN

Ich habe den Bibliografiestil hinzugefügt, wie von @john-collins vorgeschlagen, erhalte aber immer noch dieselbe Warnung und keine Bibliografieausgabe außer der Abschnittsüberschrift. Meine .bib-Datei ist in Ordnung, da ich sie ohne Probleme mit mehreren anderen LaTeX-Dokumenten verwendet habe.

bibtopic erstellt separate .bbl- und .aux-Dateien für verschiedene Bibliografien, die aus verschiedenen .bib-Dateien gelesen werden (was ich möchte, deshalb versuche ich, das Paket zu verwenden). In diesem Fall wurden die folgenden Dateien erstellt:

--- minimal1.aux ---
%% Info from `bibtopic.sty': natbib loaded.
\bibstyle{plainnat}
\citation{*}
\bibdata{reports}

--- minimal1.bbl ---
%%% produced automatically by bibtopic.sty v1.1
%%% produced automatically by bibtopic.sty v1.1
\csname bt@warn@outdated\endcsname{minimal1}

Dies ist die Protokollausgabe, die es liefert, nur der Vollständigkeit halber (ich habe den Pfad minimal.texauf meinem System unkenntlich gemacht):

This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian) (preloaded format=pdflatex 2019.6.15)  2 FEB 2020 20:22
entering extended mode
 \write18 enabled.
 %&-line parsing enabled.
**minimal.tex
(<some path>/minimal.tex
LaTeX2e <2017-04-15>
Babel <3.18> and hyphenation patterns for 33 language(s) loaded.
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2014/09/29 v1.4h Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option)
)
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(/usr/share/texlive/texmf-dist/tex/latex/bibtopic/bibtopic.sty
Package: bibtopic 2006/09/08 v1.1a Sectioned Bibliographies

(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
\c@btauxfile=\count87
\bt@infilea=\read1
\bt@infileb=\read2
\bt@outfile=\write3
\bt@tempboxa=\box26
)
(/usr/share/texlive/texmf-dist/tex/latex/natbib/natbib.sty
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip43
\bibsep=\skip44
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count88
)
(<some path>/minimal.aux)
\openout1 = `minimal.aux'.

LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 5.
LaTeX Font Info:    ... okay on input line 5.
LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 5.
LaTeX Font Info:    ... okay on input line 5.
LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 5.
LaTeX Font Info:    ... okay on input line 5.
LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 5.
LaTeX Font Info:    ... okay on input line 5.
LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 5.
LaTeX Font Info:    ... okay on input line 5.
LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 5.
LaTeX Font Info:    ... okay on input line 5.


Package natbib Warning: Citation `GTG' on page 1 undefined on input line 6.

\openout3 = `btaux.aux'.

\openout3 = `minimal1.aux'.

(<some path>/minimal1.bbl)

Package bibtopic Warning: Please (re)run BibTeX on the file(s):
(bibtopic)                minimal1
(bibtopic)                and after that rerun LaTeX.


Package natbib Warning: There were undefined citations.

[1

{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
(<some path>/minimal.aux) ) 
Here is how much of TeX's memory you used:
 840 strings out of 494267
 10764 string characters out of 6162828
 64391 words of memory out of 5000000
 4264 multiletter control sequences out of 15000+600000
 4553 words of font info for 17 fonts, out of 8000000 for 9000
 395 hyphenation exceptions out of 8191
 23i,4n,22p,136b,116s stack positions out of 5000i,500n,10000p,200000b,80000s
</usr/sha
re/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb></usr/share/tex
live/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb></usr/share/texlive/t
exmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb>
Output written on "<some path>/minim
al.pdf" (1 page, 25638 bytes).
PDF statistics:
 20 PDF objects out of 1000 (max. 8388607)
 13 compressed objects within 1 object stream
 0 named destinations out of 1000 (max. 500000)
 1 words of extra memory for PDF output out of 10000 (max. 10000000)

verwandte Informationen