note286 / xduts

Xidian University TeX Suite 西安电子科技大学LaTeX套装
https://www.ctan.org/pkg/xduts
LaTeX Project Public License v1.3c
699 stars 71 forks source link

使用parencite引用,编译出来的引用标号后有一个空格 #176

Closed devindang closed 5 months ago

devindang commented 5 months ago

image 我看了 #62 里面的问题,并没有加载任何和参考文献相关的宏包。

请问这个是正常的吗?我看了文档,并没有找到相关的描述。

这是我用到的所有的宏包: image

note286 commented 5 months ago

请给出能复现问题的完整代码,尽量不要让我猜测。完整不意味着全部代码,目的是直接能复现问题。

devindang commented 5 months ago

请给出能复现问题的完整代码,尽量不要让我猜测。完整不意味着全部代码,目的是直接能复现问题。

这是可以复现问题的完整代码

% main.tex
\documentclass{xdupgthesis}
\xdusetup{
    style   /   cjk-font            = win,
    style   /   latin-font          = tac,
    style   /   table-small-font    = true,
    style   /   bib-backend         = biblatex,
    info    /   bib-resource        = {ref.bib}
}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{docmute}

\begin{document}

    文献\parencite{koren2018computer}提到

\end{document}
% ref.bib
@book{koren2018computer,
  title={Computer arithmetic algorithms},
  author={Koren, Israel},
  year={2018},
  publisher={CRC Press}
}

image

note286 commented 5 months ago

你应该写作文献 \parencite{koren2018computer}提到或者文献 \parencite{koren2018computer} 提到

你可以尝试文献[1]提到的效果,你就明白是怎么回事了。