Seite 1 von 1

TexMaker kompiliert nicht bei Biblatex

Verfasst: Mi 15. Feb 2017, 11:04
von tobi2192
Hallo,

ich bin neu hier im Forum und hoffe, dass ich die Frage nicht doppelt stelle, aber ich konnte über die Suchfunktion nichts finden. Mein Problem ist folgendes: Ich nutze den TexMaker (Version 4.5) unter MacOS Sierra und habe nach Herbert Schulz' "Updating for El Capitan and Sierra" die Pfade zu /Library/TeX/texbin geändert. "Schnelles Übersetzen" funktioniert auch (das PDF wird erstellt), aber der Verweis auf die bib funktioniert offensichtlich nicht, auch wenn die Datei im selben Ordner liegt.

Als fehlermeldung wird mir folgendes ausgegeben:
LaTeX Warning: Citation 'einstein' on page 1 undefined on input line 7.
LaTeX Warning: Citation 'latexcompanion' on page 1 undefined on input line 8.
LaTeX Warning: Citation 'knuthwebsite' on page 1 undefined on input line 9.
LaTeX Warning: Empty bibliography on input line 11.

Hier ein Minimalbeispiel meiner Hauptdatei:
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{biblatex}
\addbibresource{bib.bib}

\begin{document}
erstes Zitat\footcite[vgl.][S. 1]{einstein}
\\zweites Zitat\footcite[vgl.][S. 2]{latexcompanion}
\\drittes Zitat\footcite[vgl.][S. 3]{knuthwebsite}

\printbibliography
\end{document}
und meiner bib:
@article{einstein,
  author =       "Albert Einstein",
  title =        "{Zur Elektrodynamik bewegter K{\"o}rper}. ({German})
                 [{On} the electrodynamics of moving bodies]",
  journal =      "Annalen der Physik",
  volume =       "322",
  number =       "10",
  pages =        "891--921",
  year =         "1905",
  DOI =          "http://dx.doi.org/10.1002/andp.19053221004"
}

@book{latexcompanion,
    author    = "Michel Goossens and Frank Mittelbach and Alexander Samarin",
    title     = "The \LaTeX\ Companion",
    year      = "1993",
    publisher = "Addison-Wesley",
    address   = "Reading, Massachusetts"
}
 
@misc{knuthwebsite,
    author    = "Donald Knuth",
    title     = "Knuth: Computers and Typesetting",
    url       = "http://www-cs-faculty.stanford.edu/\~{}uno/abcde.html"
}

Vielen dank schon einmal!

PS: unter sharelatex.com wird das Dokument übrigens korrekt kompiliert.

Verfasst: Mi 15. Feb 2017, 11:06
von u_fischer
Was steht in der blg-Datei?

Verfasst: Mi 15. Feb 2017, 11:52
von tobi2192
Das hier:
This is BibTeX, Version 0.99d (TeX Live 2016)
Capacity: max_strings=35307, hash_size=35307, hash_prime=30011
The top-level auxiliary file: main.aux
I found no \citation commands---while reading file main.aux
I found no \bibdata command---while reading file main.aux
I found no \bibstyle command---while reading file main.aux
You've used 0 entries,
            0 wiz_defined-function locations,
            83 strings with 482 characters,
[...]

Verfasst: Mi 15. Feb 2017, 12:06
von u_fischer
Mit biblatex musst du biber und nicht bibtex benutzen. Stelle deinen Editor entsprechend um.

Verfasst: Mi 15. Feb 2017, 12:19
von Gast
Wie die Umstellung geht, ist übrigens in den wichtigen Hinweisen des Literaturverzeichnis-Forums verlinkt.

Verfasst: Mi 15. Feb 2017, 12:27
von tobi2192
Vielen Dank für die schnelle Hilfe! Jetzt funktioniert es.