我正在使用article
class。我有一个使用 的参考书目\bibitem
。我想给出“81--90”形式的页码,其中双连字符应改为(长)破折号。
当我尝试这样做时,LaTeX 会将其变成有趣的符号(因此 1--10 会变成类似 1-ÀS10 的东西)。我该如何让它工作?我尝试将其括在花括号中,但没有成功。
例子
\bibitem{RD} Rodrigues L. 1999 On a Darcy--Sobolev problem. \textit{Contin. Mech. Thermodyn.} \textbf{11}, 181--191.
\bibitem{simon}Simon J. 1986 {Compact sets in the space $L^p(0,T;B)$}. \textit{Ann. Mat. Pura Appl.} \textbf{146}, 65--96.
我正在使用pdflatex
(在 TeXmaker 下)并手动写出 bibitems(使用\begin{thebibliography}{9}
.
我还使用了提供给我的样式文件,但不幸的是我无法分发,所以我无法发布有用的 MWE。
答案1
(评论太长,但实际上并不是解决方案。)
仅根据您发布的代码或给出的特定提示,使用 pdfLaTeX 可获得以下输出。生成了三个正常的短破折号,但没有“有趣的字符”。如果您加载您不能自由共享的包,是否会得到相同的输出?
\documentclass{article}
\usepackage{palatino}
\usepackage[scaled=0.85]{helvet}
\begin{document}
\begin{thebibliography}{9}
\bibitem{RD} Rodrigues L. 1999 On a Darcy--Sobolev problem. \textit{Contin. Mech. Thermodyn.}
\textbf{11}, 181--191.
\bibitem{simon}Simon J. 1986 {Compact sets in the space $L^p(0,T;B)$}. \textit{Ann. Mat.
Pura Appl.} \textbf{146}, 65--96.
\end{thebibliography}
\end{document}