BibTex 和連字符名字與語言典型標記/變音符號結合

BibTex 和連字符名字與語言典型標記/變音符號結合

在參考中,我希望以以下方式列印名字: 在此輸入影像描述

我嘗試了各種變體:

@incollection{KariVolkov2021,
  author    = {Jarkko Kari and Mikhail V. Volkov},
  editor    = {Jean-Eric Pin},
  title     = {{\v{C}ern\'y's} conjecture and the road colouring problem},
  booktitle = {Handbook of Automata Theory, Volume I},
  pages     = {525--565},
  publisher = {European Mathematical Society Publishing House},
  year      = {2021},
}

這給出了帶有連字符的預期行為。然而,重音標記卻遺失了:在此輸入影像描述

因此,添加這個標記似乎是合乎邏輯的:

@incollection{KariVolkov2021,
  author    = {Jarkko Kari and Mikhail V. Volkov},
  editor    = {Jean-\'{E}ric Pin},
  title     = {{\v{C}ern\'y's} conjecture and the road colouring problem},
  booktitle = {Handbook of Automata Theory, Volume I},
  pages     = {525--565},
  publisher = {European Mathematical Society Publishing House},
  year      = {2021},
}

然而,這給出了以下結果:在此輸入影像描述

因此,作為最後一次嘗試,我嘗試將“{}”放在連字符周圍:

@incollection{KariVolkov2021,
  author    = {Jarkko Kari and Mikhail V. Volkov},
  editor    = {Jean{-}\'{E}ric Pin},
  title     = {{\v{C}ern\'y's} conjecture and the road colouring problem},
  booktitle = {Handbook of Automata Theory, Volume I},
  pages     = {525--565},
  publisher = {European Mathematical Society Publishing House},
  year      = {2021},
}

但這只會導致:在此輸入影像描述

有什麼想法如何獲得正確的表格嗎?

答案1

bibtex 對非 ascii 字元的支援非常有限,它需要形式中的重音字母,{\'E}以便外部大括號組將事物保持為一個單元。

相關內容