参考书目中的页码之间有破折号的问题

参考书目中的页码之间有破折号的问题

我编写了以下 LaTeX 代码来获取参考书目,但输出的页码格式存在问题。

\bibitem{Nicanfar}
H. Nicanfar, P. Jokar, and V. Leung, ``Smart grid authentication
and key management for unicast and multicast
communications,`` in IEEE PES Innovative Smart Grid
Technologies Asia (ISGT), pp. 1–8, 2011.

输出如下:

在此处输入图片描述

有人能帮帮我吗?我希望页码显示为pp. 1-8pp. 18

答案1

目前,字符串中有一个非 ASCII 字符 -- -- pp. 1–8。您应该将其替换为--(2 个连续的破折号,将排版为短破折号)或启用utf8输入编码以及设置知道如何处理的字体

在此处输入图片描述

\documentclass{article}
\usepackage[utf8]{inputenc} % enable utf8-encoded characters
\usepackage[T1]{fontenc}
\begin{document}

\begin{thebibliography}{9}
\bibitem{Nicanfar}
H. Nicanfar, P. Jokar, and V. Leung, ``Smart grid authentication
and key management for unicast and multicast
communications,`` in IEEE PES Innovative Smart Grid
Technologies Asia (ISGT), pp. 1–8, 2011.  % <-- non-ASCII dash

\bibitem{Nicanfar}
H. Nicanfar, P. Jokar, and V. Leung, ``Smart grid authentication
and key management for unicast and multicast
communications,`` in IEEE PES Innovative Smart Grid
Technologies Asia (ISGT), pp. 1--8, 2011. % <-- 2 plain dashes

\end{thebibliography}
\end{document}

相关内容