引文格式有问题。开始引文和结束引文都指向结束引文,

引文格式有问题。开始引文和结束引文都指向结束引文,

可能重复:
自动将“abc”形式的引号转换为``abc"

我的引文在引文的两边都像结尾引文一样。我该如何解决这个问题?

这是我的代码,它在此编写器上运行良好,但在我的 Texmaker 上却出现了问题。可能是我的键映射或类似原因?

%----------------------------------------------------------------------------------------
%   PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------

\documentclass[paper=a4, fontsize=11pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel} % English language/hyphenation
\usepackage{amsmath,amsfonts,amsthm} 
\usepackage[super,comma,sort&compress, square]{natbib}

\begin{document}
\title{}

\maketitle % Print the title

Some sort of "quotation"

\bibliography{mybib}
\bibliographystyle{unsrt}

\end{document}

答案1

你应该使用两个反引号

`

和两个

'得到正确的引文,如

``quotation''.

或者更好的选择是使用csquotes带有选项的包

 \usepackage[autostyle=true]{csquotes}

因为您正在使用 babel。

\documentclass[paper=a4, fontsize=11pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel} % English language/hyphenation
\usepackage{amsmath,amsfonts,amsthm}
\usepackage[super,comma,sort&compress, square]{natbib}
\usepackage[autostyle=true]{csquotes}
\begin{document}
\title{}
\maketitle % Print the title

Some sort of ``quotation'' \enquote{quotation}

\bibliography{mybib}
\bibliographystyle{unsrt}

\end{document}

在此处输入图片描述

有关详细信息,csquotes请参阅可以通过运行texdoc csquotes或在以下位置获取的文档www.texdoc.net

相关内容