-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
中英文文献中 unicode 引号的处理 #184
Comments
我测了一下,你的bib里面本来就是全角的引号啊,不是半角的,所以肯定会这样的。
最简单的方法是用文本编辑器修改bib,直接搜索替换就好了。
获取Outlook for Android<https://aka.ms/AAb9ysg>
…________________________________
From: zwz ***@***.***>
Sent: Friday, January 26, 2024 7:25:06 PM
To: hushidong/biblatex-gb7714-2015 ***@***.***>
Cc: Subscribed ***@***.***>
Subject: [hushidong/biblatex-gb7714-2015] 中英文文献中的引号处理 (Issue #184)
在用 bibutils 转化文献格式的时候,发现它会将英文引号'和"处理为‘,’,“,”(mac下拼音输入法也是这样的引号)
然后发现,这些引号,不管是否在中英文文献中,最终在pdf中都是全角的样子
这样的话,对于英文文献就显得非常难看和不合理
不知道是否可以添加对这些引号的自动处理?
以下是MWE
\documentclass[]{ctexart}
\usepackage[backend=biber,
style=gb7714-2015]{biblatex}
\begin{filecontents}[force,noheader]{\jobname.bib}
@Article{A01,
author = {Author, A.},
year = {2001},
title = {“Test” User’ Manual},
journaltitle = {A journal},
number = {1},
pages = {1--4},
}
@Article{A02,
author = {张三},
year = {2001},
title = {“测试”手册},
journaltitle = {测试},
number = {1},
pages = {1--4},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\fullcite{A01,A02}
\end{document}
―
Reply to this email directly, view it on GitHub<#184>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AE3ZZI364GGYTJVWFCJ3XG3YQOHBFAVCNFSM6AAAAABCL74BTWVHI2DSMVQWIX3LMV43ASLTON2WKOZSGEYDEMBWGEZTOMI>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
是吗,我在wps中看了一下,好像是半角的样子 然后我在emacs下看了一下其中两个引号的字符信息如下:
|
Unicode 编码的弯引号不分全角、半角,显示的字形只跟字体有关。 |
嗯,我想也应该是这样 我将这些字符的具体信息贴上来 |
可以设置中英文,但主要是底层的 |
还是直接指定的好, 中文的使用输入法直接输入全角的引号:“,”,',' 尽管 ``和` 映射的也是U+201C,U+2018,但会使用默认的英文字体。其它的则能正常区分的。 比如:
结果为: 换个字体后:
结果为: |
目前 xeCJK 就是这么设计的。 我记得有人提过用 babel 之类的机制切换语言时同时修改这些字符的字体映射(也就是兼容 |
在用 bibutils 转化文献格式的时候,发现它会将英文引号
'
和"
处理为‘
,’
,“
,”
(mac下拼音输入法也是这样的引号)然后发现,这些引号,不管是否在中英文文献中,最终在pdf中都是全角的样子
这样的话,对于英文文献就显得非常难看和不合理
不知道是否可以添加对这些引号的自动处理?
以下是MWE
The text was updated successfully, but these errors were encountered: