在导入的参考书目项目中显示 en-dash 时出现问题!

在导入的参考书目项目中显示 en-dash 时出现问题!

我正在从引文管理器导入大型参考书目,但似乎字符在 Latex 中显示不正确。但它应该是短破折号。

我不想将字符逐个更改为 -- 。这个问题从何而来?作为一种解决方法,如何在乳胶中定义此字符以将其替换为短划线?

\documentclass{article}

 %with or without the following line, the en-dash is not displayed
\usepackage[T1]{fontenc}

\begin{document}
This is a test \cite{hwang_utility_2013}

\begin{thebibliography}{10}
\bibitem{hwang_utility_2013}
Eun~Jung Hwang and Richard~A. Andersen.
\newblock The utility of multichannel local field potentials for
  brain–machine interfaces.
\newblock {\em Journal of Neural Engineering}, 10(4):046005, August 2013.
\end{thebibliography}
\end{document} 

在此处输入图片描述

答案1

重音符号 A 几乎总是意味着未声明的 utf-8 编码

添加

\usepackage[utf8]{inputenc}

请注意,bibtex 并不是真正支持 utf-8,但只要字符在标题中而不是在需要排序的作者姓名中,通常就可以解决这个问题。

相关内容