hushidong / biblatex-gb7714-2015

A biblatex implementation of the GB/T7714-2015 bibliography style || GB/T 7714-2015 参考文献著录和标注的biblatex样式包
742 stars 83 forks source link

`\parencite[]{}` 的 `[]` 输入页码时的空格问题 #196

Closed xkwxdyy closed 2 months ago

xkwxdyy commented 2 months ago

MWE:

\documentclass{ctexart}
\usepackage[
  backend=biber,
  style=gb7714-2015,
]{biblatex}
\addbibresource{biblatex-examples.bib}

\begin{document}

\parencite[p. 12]{sigfridsson}

\parencite[p.\,12]{sigfridsson}

\printbibliography

\end{document}

输出结果为

image

可以看到 p. 12 的输出结果为正文的空格间距,应该是把 . 当做了句号而产生的空格,但是 p.. 应该是表示省略,不应该有这么大间距?我也不太清楚具体国标规范有没有关于这部分的内容。我个人习惯感觉 \, 的距离合理点。

hushidong commented 2 months ago

国标没有规定行内标注的页码怎么表示的,国标只有上标的标注的页码。

国标也没有p.的。

所以根据自己的需要处理就好了。

xkwxdyy commented 2 months ago

好的,谢谢胡老师。