本の章を引用する

本の章を引用する

ある本のいくつかの章をファイルに引用しようとしています.bibが、ファイルをコンパイルすると.tex、著者名のない章がいくつか出てきます。原因も解決方法もわかりません。何か提案はありますか?

コード:

  @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}
  }

出力:

出力

答え1

フィールドを誤って使用しているようです。フィールド名を に変更し、を に変更し、フィールドに数値を入力し、フィールドも入力することchapterをお勧めします。chaptertitletitlebooktitlechapterpages

@moewe がコメントで指摘したように、本の 4 つの章それぞれに個別のエントリを提供することは、実際にはあまり意味がありません。本全体に対して 1 つのエントリを提供し、引用の呼び出しでどの章を引用しているかをより具体的に示すことをお勧めします。

4 つの個別のエントリ (各章に 1 つ) を保持する完全な MWE:

ここに画像の説明を入力してください

\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}

関連情報