如何在 bibtex cite-key 中插入特殊的法语字符?

如何在 bibtex cite-key 中插入特殊的法语字符?

我正在尝试使用一些技巧以便在我的参考书目中拥有正确的字符:

  @book{Anzieu1981,
  author = {Anzieu, Didier},
  title = {Le corps de l'{\oe}uvre.%some tricks like this one. Essais psychanalytiques sur le travail créateur},
  publisher = {Gallimard},
  address = {Paris, France},
  year = {1981},
  }

但我对 cite-key 有一个疑问:

  @misc{Ricœur1955,
  author = {Ricoeur, Paul},
  title = {La parole est mon royaume},
  number = {4},
  url = {http://leportique.revues.org/263},
  year = {1955},
  }

当我使用 Texmaker(在 Mac 上)运行 .bib 文件时,该字符:œ 无法正确编译,我无法使用以下字符:oe。我该如何修复该问题?

答案1

lualatex如果使用或xelatex以及 或bibtex8进行编译,则可以在 bibtex 输入键中使用非 ASCI 字符bibtexu

以下是 MWE:

\documentclass{article}

\usepackage{fontspec}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{Ricœur1955,
  author = {Ricœur, Paul},
  title = {La parole est mon royaume},
  number = {4},
  url = {http://leportique.revues.org/263},
  year = {1955},
  }
\end{filecontents}

\begin{document}

Ricœur \cite{Ricœur1955} \verb|\cite{Ricœur1955}|

\bibliographystyle{plain}
\bibliography{\jobname.bib}

\end{document}

lualatex + bibtexu + lualatex + lualatex使用produce编译 MWE

在此处输入图片描述

相关内容