
Ich versuche, einige Kapitel eines Buches in einer .bib
Datei zu zitieren, aber beim Kompilieren der .tex
Datei erscheinen einige Kapitel ohne Autorennamen. Ich kenne den Grund nicht und weiß nicht, wie ich das beheben kann. Irgendwelche Vorschläge?
Code:
@inbook{bitam2014bio1,
title={Bio-inspired Routing Protocols for Vehicular Ad-Hoc Networks},
author={Bitam, Salim and Mellouk, Abdelhamid},
chapter = {Vehicular Ad Hoc Networks},
year={2014},
publisher={John Wiley \& Sons}
}
@inbook{bitam2014bio2,
title={Bio-inspired Routing Protocols for Vehicular Ad-Hoc Networks},
author={Bitam, Salim and Mellouk, Abdelhamid},
chapter = {Routing for Vehicular Ad Hoc Networks},
year={2014},
publisher={John Wiley \& Sons}
}
@inbook{bitam2014bio3,
title={Bio-inspired Routing Protocols for Vehicular Ad-Hoc Networks},
author={Bitam, Salim and Mellouk, Abdelhamid},
chapter = {Conventional Routing Protocols for VANETs},
year={2014},
publisher={John Wiley \& Sons}
}
@inbook{bitam2014bio4,
title={Bio-inspired Routing Protocols for Vehicular Ad-Hoc Networks},
author={Bitam, Salim and Mellouk, Abdelhamid},
chapter = {Bio-inspired Routing Protocols for VANETs},
year={2014},
publisher={John Wiley \& Sons}
}
Ausgabe:
Antwort1
Sie scheinen das Feld falsch zu verwenden chapter
. Ich schlage vor, Sie benennen das chapter
Feld in um title
, ändern es title
in booktitle
, geben Zahlen in das chapter
Feld ein und geben auch pages
Felder an.
Wie @moewe in einem Kommentar angemerkt hat, macht es eigentlich wenig Sinn, für jedes der vier Kapitel des Buches separate Einträge bereitzustellen. Vielleicht möchten Sie einen einzelnen Eintrag für das gesamte Buch bereitstellen und in den Zitationshinweisen genauer angeben, welches Kapitel Sie zitieren.
Ein vollständiges MWE, das die vier separaten Einträge enthält (einen für jedes Kapitel):
\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@inbook{bitam2014bio1,
title = "Vehicular Ad~Hoc Networks",
booktitle = "Bio-inspired Routing Protocols for Vehicular Ad-Hoc Networks",
author = "Bitam, Salim and Mellouk, Abdelhamid",
chapter = 1,
pages = "1-27",
year = 2014,
publisher = "John Wiley~\& Sons",
}
@inbook{bitam2014bio2,
title = "Routing for Vehicular Ad~Hoc Networks",
booktitle = "Bio-inspired Routing Protocols for Vehicular Ad-Hoc Networks",
author = "Bitam, Salim and Mellouk, Abdelhamid",
chapter = 2,
pages = "29-48",
year = 2014,
publisher = "John Wiley~\& Sons",
}
@inbook{bitam2014bio3,
title = "Conventional Routing Protocols for {VANETs}",
booktitle = "Bio-inspired Routing Protocols for Vehicular Ad-Hoc Networks",
author = "Bitam, Salim and Mellouk, Abdelhamid",
chapter = 3,
pages = "49-78",
year = 2014,
publisher = "John Wiley~\& Sons",
}
@inbook{bitam2014bio4,
title = "Bio-inspired Routing Protocols for {VANETs}",
booktitle = "Bio-inspired Routing Protocols for Vehicular Ad-Hoc Networks",
author = "Bitam, Salim and Mellouk, Abdelhamid",
chapter = 4,
pages = "79-119",
year = 2014,
publisher = "John Wiley~\& Sons",
}
\end{filecontents}
\documentclass{IEEEtran}
\usepackage[backend=biber,style=ieee,dashed=false]{biblatex}
\addbibresource{mybib.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}