Ich erstelle meine erste Bibliographie und bekomme seit einer Stunde Fehler. Die .tex-Datei:
\documentclass[francais,10pt,twosides,a4paper]{report}
\usepackage[francais,polutonikogreek]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{url}
\usepackage{textgreek}
\begin{document}
\begin{quotation}
notre âme. \cite{ref1}
\end{quotation}
\end{document}
Und das Lätzchen:
@book
{ref1,
title = {Manuel d’Épictète}
author = {Arrien}
publisher = {Wikisource \url{https://fr.wikisource.org/wiki/Manuel_d>%E2%80>>%99%C3%89pict%C3%A8te_(trad._Thurot)#I._Distinction_entre_ce_qui_d.C3.A9pend_de_nous_et_ce_
qui_ne_d.C3.A9pend_pas_de_nous}},
note = {Traduit par Jean-François Thurot}
year = {1889}
}
Können Sie mir bitte bei der Lösung dieses Problems helfen? Vielen Dank.
Antwort1
Ihr Code enthält mehrere Fehler.
- LaTeX benötigt einen Befehl, um zu wissen, wo es basierend auf Ihren zitierten Büchern, Artikeln usw. die Bibliografie drucken soll.
- Ihre Bib-Datei enthält einige Fehler. Ich habe sie in meinem folgenden MWE korrigiert (bitte beachten Sie die hinzugefügten Kommas und die Verwendung des Felds
url
). - Sie verwenden die Kodierung UTF-8. Aus diesem Grund habe ich zum Erstellen der Bibliographie Paket
biblatex
und Programm verwendetbiber
, da Biber UTF-8 verarbeiten kann,bibtex
nicht.
MWE, Kompilieren ohne Fehler:
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@Book{goossens,
author = {Goossens, Michel and Mittelbach, Frank and
Samarin, Alexander},
title = {The LaTeX Companion},
edition = {1},
publisher = {Addison-Wesley},
location = {Reading, Mass.},
year = {1994},
}
@Book{adams,
title = {The Restaurant at the End of the Universe},
author = {Douglas Adams},
series = {The Hitchhiker's Guide to the Galaxy},
publisher = {Pan Macmillan},
year = {1980},
}
@article{einstein,
author = {Albert Einstein},
title = {{Zur Elektrodynamik bewegter Kö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{ref1,
title = {Manuel d’Épictète},
author = {Arrien},
publisher = {Wikisource},
url = {https://fr.wikisource.org/wiki/Manuel_d>%E2%80>>%99%C3%89pict%C3%A8te_(trad._Thurot)#I._Distinction_entre_ce_qui_d.C3.A9pend_de_nous_et_ce_
qui_ne_d.C3.A9pend_pas_de_nous},
note = {Traduit par Jean-François Thurot},
year = {1889},
}
\end{filecontents*}
\documentclass[francais,10pt,twosides,a4paper]{report}
\usepackage[francais,polutonikogreek]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc} %
\usepackage{lmodern}
\usepackage[hyphens]{url} % <==========================================
\usepackage{textgreek}
\usepackage[
backend=biber, % bibtex % bibtex or biber (prefered)
natbib=true,
style=numeric,
sorting=none % none, nty % no sorting or standard sorting
]{biblatex} % <========================================================
\addbibresource{\jobname.bib} % calls bib file to create the bibliography
\begin{document}
We first cite Albert Einstein~\cite{einstein}, second~\cite{adams} and
third the \LaTeX{} Companian~\cite{goossens}.
\begin{quotation}
notre âme. \cite{ref1}
\end{quotation}
\printbibliography
\end{document}
und die daraus resultierende Bibliographie: