参考书目中的引号渲染损坏

参考书目中的引号渲染损坏

有人知道为什么我的参考书目会这样呈现吗(见图片)?所有 @article 条目都是这样。

奇怪的引号行为

.bib 条目是

@ARTICLE{MNIST,
author={Lecun, Y. and Bottou, L. and Bengio, Y. and Haffner, P.},
journal={Proceedings of the IEEE},
title={Gradient-based learning applied to document recognition},
year={1998},
month=11,
volume={86},
number={11},
pages={2278-2324},
doi={10.1109/5.726791},
ISSN={0018-9219}}

我正在使用默认设置(bibtex)的 cleanthesis.sty,并在 Windows 上使用 Texmaker 进行编辑。

答案1

解决方案是删除德语风格的引号选项。

cleanthesis.sty

\RequirePackage[                    % advanced quotes
    strict=true,                    %   - warning are errors now
    style=german                    %   - german quotes
]{csquotes}

\RequirePackage[                    % advanced quotes
    strict=true,                    %   - warning are errors now
    style=english                   %   - english quotes
]{csquotes}

相关内容