我正在使用article
類別。我有一個使用的參考書目\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 下)並且我手動寫出 bibitem(使用\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}