2 Star 4 Fork 1

Springtwr / biblatex-gb7714-2015-backup

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

Date of last change: 2020-03-04 to version v1.0t

biblatex-gb7714-2015: a biblatex style package


使用入门 |==| 说明文档 |==| WIKI

Introduction

Maintainer: huzhenzhen hzzmail@163.com

Homepage: https://github.com/hushidong/biblatex-gb7714-2015

ctan-pkg: https://www.ctan.org/pkg/biblatex-gb7714-2015

License: LaTeX Project Public License 1.3 or later

A biblatex implementation of the GB/T 7714-2015 bibliography style for Chinese users

The biblatex-gb7714-2015 package provides an implementation of the bibliography style of the GB/T 7714-2015 bibliography style. This implementation follows GB/T 7714-2015 standard, and can be used simply by loading biblatex with the appropriate option

biblatex-gb7714-2015 宏包是中文参考文献著录/标注标准 GB/T 7714-2015 的 biblatex 实现。它本质上是一个样式包,提供了顺序编码制和著者年份制样式,在 tex 文档中配合 biblatex 宏包使用,以生成满足《GB/T 7714-2015 信息与文献 参考文献著录规则》要求的参考文献。除了具备 biblatex 提供的不同于传统基于 bibtex 的参考文献解决方案的特点外,还具有如下特点:

  • 较强的兼容性。能够兼容 biblatex v2.8 以上版本;能够兼容国标样式的一些常用条目类型、数据域。

  • 较高的易用性。标注/著录格式完全由样式实现,不必为排序、多语言等问题手动处理bib文件;提供了丰富的标注(引用)命令,包括一些中文中习惯的命令;提供了多语言对照,多语言文献表等功能。

  • 较大的灵活性。提供丰富的选项来帮助用户进行排序调整、著录项(姓名、出版项、文献标识符、标题超链接)格式调整、文献表格式(标签对齐、标签格式、条目格式、字体、段落格式)调整、编码兼容。

  • 较好的维护性。样式代码主要是在标准样式基础上提供的中文国标解决方案,保持与标准样式一致的结构、风格和习惯,并提供详尽的注释,用户可轻松理解,并可在其基础上进一步修改以实现其它要求的样式,比如宏包附带的chinese-erj样式,就是基于本样式实现的经济学研究期刊的参考文献样式。

简单使用说明见:使用入门


Need to do:

* special characters in all fields?
* entry without author: the delimiter between title and year?
* TEST FOR texlive 2015,2016,2017

Applications

Related Links


Tutorial/使用入门

[//]: # "这里这种方式不适合可能主要是因为标题所导致,因此用上面的方式进行处理"

0. pacakge usage/宏包加载方式

样式包配合biblatex使用,即在biblatex调用时加载样式包:
  • 使用顺序编码制:
	\usepackage[backend=biber,style=gb7714-2015]{biblatex}
  • 使用著者-出版年制:
	\usepackage[backend=biber,style=gb7714-2015ay]{biblatex}
  • 使用宏包提供的选项:
    %设置gbalign选项以改变文献表序号标签对齐方式,
    %设置gbpub=false取消缺省出版项自填补信息,比如:
    \usepackage[backend=biber,style=gb7714-2015,gbalign=gb7714-2015,gbpub=false]{biblatex}
  • 使用同一文献表中不同语言区分著录格式的样式(gb7714-2015ms):
    %设置gbstyle=false,中文文献使用GB/T 7714-2015著录格式,而其它语言文献使用biblatex标准样式
    \usepackage[backend=biber,style=gb7714-2015ms,gbstyle=false]{biblatex}
  • 同一文档中不同文献分节区分不同著录格式的样式(gb7714-2015mx):
    %gb7714-2015mx默认使用顺序编码制样式
    \usepackage[backend=biber,style=gb7714-2015mx]{biblatex}
    %如需在某一参考文件分节使用著者年份制样式,比如第2个refsection中使用时,则在导言区设置:
    \setaystylesection{2}

更多宏包选项的说明见:biblatex-gb7714-2015.pdf

宏包加载的完整文档示例见:tex文档一般结构

1. Tex source file/tex文档一般结构

注意其中加载biblatex宏包的代码:
\documentclass{article}%文档类%导言区开始:

\usepackage{ctex}%加载ctex宏包,中文支持

\usepackage[left=20mm,right=20mm,top=25mm, bottom=15mm]{geometry}%加载geometry宏包,定义版面

\usepackage[colorlinks=true,pdfstartview=FitH,%
linkcolor=blue,anchorcolor=violet,citecolor=magenta]{hyperref}%加载hyperref宏包,使用超链接

\usepackage[backend=biber,bibstyle=gb7714-2015,%nature,%%加载biblatex宏包,使用参考文献
citestyle=gb7714-2015%,backref=true%%其中后端backend使用biber
]{biblatex}%标注(引用)样式citestyle,著录样式bibstyle都采用gb7714-2015样式

\usepackage{filecontents}
\begin{filecontents}{egbibdata.bib}
@Book{Peebles2001-100-100,
  Title                    = {Probability, random variable, and random signal Principles and \LaTeX{}},
  Address                  = {New York},
  Author                   = {von Peebles, Jr., P. Z.},
  Edition                  = {4},
  Pages                    = {100},
  Publisher                = {McGraw-Hill},
  Year                     = {2001}
}

@Book{蔡敏2006--,
  Title                    = {UML基础和Rose建模教程},27
  Address                  = {北京},
  Author                   = {蔡敏 and 徐慧慧 and 黄柄强},
  Publisher                = {人民邮电出版社},
  Year                     = {2006},
  Month                    = {1}
}
\end{filecontents}

\addbibresource[location=local]{egbibdata.bib}%biblatex宏包的参考文献数据源加载方式

\begin{document}%正文区开始:

%正文内容,引用参考文献

1. 不带页码的引用(顺序编码制上标,方括号包围;作者年制行内,括号包围):\\
	见文献\cite{Peebles2001-100-100}\\
	见文献\upcite{Peebles2001-100-100}\\
	见文献\supercite{Peebles2001-100-100}

2. 不带页码的引用(顺序编码制非上标,方括号包围;作者年制行内,括号包围):\\
	见文献\parencite{Peebles2001-100-100}

3. 带页码的引用(标准命令,默认样式; 增加命令,GB/T 7714-2015样式):\\
	见文献\cite[见][49页]{蔡敏2006--}\\
	见文献\parencite[见][49页]{Peebles2001-100-100}\\
	见文献\pagescite{Peebles2001-100-100}\\
	见文献\pagescite[201-301]{Peebles2001-100-100}

4. 顺序编码制中同时输出作者和顺序编码标签,比如:\\
	见\citeauthor{蔡敏2006--}\cite{蔡敏2006--}\\
	见\authornu*mcite{蔡敏2006--}\\
	见\textcite{蔡敏2006--} (顺序编码标签不上标)

5. 作者年制文中已有作者还需要年份和页码(顺序编码制与pagescite作用相同,作者年制年份行内页码上标):\\
	见蔡敏\yearpagescite[][205]{蔡敏2006--}和Peebles\yearpagescite[][15]{Peebles2001-100-100}

6. 作者年制文中已有作者只需要年份(顺序编码制与pagescite作用相同,作者年制年份行内):\\
	见赵耀东\yearcite{蔡敏2006--}\\
	见赵耀东(\cite*{蔡敏2006--})\\
	见赵耀东(\citeyear{蔡敏2006--})

7. 作者年制中由标注命令给出作者年份信息,作者以主语方式作为正文内容:\\
	见\textcite{蔡敏2006--}

8. 在页脚中引用和打印文献表:\\
	见文献\footnote{在脚注中引用\footcite{蔡敏2006--}}\\
	见文献\footfullcite{蔡敏2006--}


%打印参考文献表
	\printbibliography[heading=bibliography,title=参考文献]
\end{document}

2. Compile method/文档编译方式

	xelatex jobname.tex
	biber jobname
	xelatex jobname.tex
	xelatex jobname.tex

或者

	latexmk -xelatex jobname.tex

编译引擎使用lualatex也是可以的,只要该引擎编译时ctex宏包能够正确支持中文。

3. Recommended environment/推荐使用环境

  • Texlive+Winedt
  • Texlive+Texstudio
  • texlive及其它发行版安装见安装指南

4. Common questions/常见问题

4.1 Installation and use/安装和使用

  • 怎么利用biblatex生成国标GB/T 7714-2015格式的参考文献表?

(1)在导言区加载biblatex宏包,并使用gb7714-2015样式:

\usepackage[backend=biber,style=gb7714-2015]{biblatex}

(2)正文中引用参考文献:

见文献\cite{referencbibtexkey}

(3)在需要的地方打印参考文献表:

\printbibliography 更直接的例子见前述的tex源文档

  • 请问我应该怎么安装和更新biblatex-gb7714-2015宏包?

biblatex-gb7714-2015宏包是基于biblatex的样式宏包,目前texlive,miktex都已收录,因此可以直接使用,一般不需要安装。

如果使用时,系统提示找不gb7714-2015.bbx或gb7714-2015ay.bbx文件的错误,说明当前tex系统未安装biblatex-gb7714-2015样式包,这时需要安装它。

最简单的方法是从本项目源码中下载 gb7714-2015.bbx, gb7714-2015ay.bbx, gb7714-2015.cbx, gb7714-2015ay.cbx 四个文件放到你要编译的主文档所在目录,如果需要使用gbk编码,则还需复制 gb7714-2015-gbk.def 文件。对于已经安装的用户需要更新到最新版,也可以下载这些文件替换系统已经安装的文件。

  • 请问使用时biblatex-gb7714-2015宏包时出现错误“ Package xkeyval Error: gb****** ' undefined in families blx@opt@pre'. [\blx@processoptions] ”?

因为宏包的功能不断增加和完善,当在tex源文档中,使用新版中的一些选项时,而系统中的biblatex-gb7714-2015宏包是旧版时,就会出现gb****选项未定义的错误。解决方法就是更新biblatex-gb7714-2015宏包。更新方法见上一个问题。

  • 为什么我之前使用样式style=caspervector进行编译没有问题,换成style=gb7714-2015后,编译就出现错误?

可能有三个原因:

(1) 辅助文件没有清理导致,当采用caspervector样式时编译产生的辅助文件中可能带有该样式的一些特有信息,由此产生一些不兼容。因此需要的操作是,清除辅助文件,然后再进行编译。清除命令为(下面的命令是windows下的,linux下的是类似的只需把删除命令换成rm -f):

del /q *.aux *.bbl *.blg *.log *.out *.toc *.bcf *.xml *.synctex *.nlo *.nls *.bak *.ind *.idx *.ilg *.lof *.lot *.ent-x *.tmp *.ltx *.los *.lol *.loc *.listing *.gz *.synctex(busy) *.nav *.snm *.vrb *.fls *.xdv *.fdb_latexmk

(2) biblatex-gb7714-2015 版本过于陈旧,旧版本对于一些特殊情况可能考虑不全面。因此需要的操作是更新biblatex-gb7714-2015,方法见上一个问题。

(3) 编译命令问题,通常情况下tex文档和bib文档是utf8编码的,因此最好采用xelatex编译,而不用pdflatex。因此如果编译时用pdflatex出现错误,请换成xelatex。

  • 为什么我编译文档后没有出现参考文献表?

当编译过程出现错误时,那么检查错误的原因,并解决它。 当编译过程没有出现错误,那么很有可能是没有采用正确的命令进行文献编译,比如采用了传统的bibtex而不是biber。那么采用正确的编译命令重新编译即可:

xelatex jobname.tex
biber jobname
xelatex jobname.tex
  • 为什么利用 ctex2.9 套装进行编译时,出现错误?

由于ctex2.9套装多年未更新,其中的biblatex宏包过于陈旧,所以需要更新 biblatex。

  • 请问除了利用xelatex进行编译外,能不能用pdflatex进行编译?

能用pdflatex进行编译。但要注意的是因为某些样式比如authoryear等使用了xstring宏包中的一些命令,所以会产生错误,但numeric类样式通常没有问题。这一问题在biblatex更新到3.12版本后取消xstring宏包后得以解决。

中文用户需要注意一些编码的问题:

utf-8编码的文档,采用xelatex编译没有任何注意事项,但使用pdflatex编译时,需要给ctex宏包加载UTF8选项,比如\usepackage[UTF8]{ctex}或者在文档类加载时给出也可以比如\documentclass[[UTF8]{article},同时引用文献时使用的引用关键词应使用英文。

当文档使用其他编码时,xelatex编译通常需要指定一个文档编码,比如windows环境下的GB2312编码的文档需要指定\XeTeXinputencoding "GBK", 否则显示乱码。使用pdflatex进行编译,如果biblatex不能正确的处理编码问题,那么需要为其明确的指定texencoding和bibencoding选项。比如windows环境下的GB2312编码的文档,需要指定\usepackge[texencoding=GBK]{biblatex}

  • 请问使用backref=true选项后,某个反向超链接总是链接到封面页是怎么回事?

对页码进行正确超链接需要一个前提是,当前链接的页码是唯一的。当有两页具有相同的页码时,超链接总是链接到第一各具有该页码的页面上。比如封面页页码是1,正文第一页页码也是1,那么到正文第一页的反向超链接总会链接到封面页上。解决该问题就是要解决页码的唯一性问题。当页码的表示形式不是同一种时,那么也会得到正确的区分。比如封面页用罗马字母I表示,而正文第一页用阿拉伯数字1表示,那么就能得到正确的反向超链接。类似于:

\pagenumbering{roman}
\title{title}
\maketitle
\clearpage

\pagenumbering{arabic}
\section{文献表}
  • 我希望参考文献表中的文献不是按引用顺序而是以文献作者的字母顺序排序,怎么实现?

一般情况下文献表是按引用顺序进行排列,标签是顺序的数字,这种方式称为顺序编码制。 如果要以文献作者字母顺序排列,那么可以换一种编制方式,称为作者年制:

\usepackage[backend=biber,style=gb7714-2015ay]{biblatex}

如果要求使用顺序编码制文献表,又要以文献作者字母顺序排列,那么可以增加排序选项sorting=nyt,意为按照姓名、年份、标题的字母顺序进行排序:

\usepackage[backend=biber,style=gb7714-2015,sorting=nyt]{biblatex}

  • 作者年制中英文文献能按字母顺序排列,那么中文文献能否以拼音或者笔画进行排序呢?

能,有两种方式实现:

(1)通过编译时给biber设置选项来实现:

%按拼音排序,biber命令
biber -l zh__pinyin jobname
%按笔画排序,biber命令
biber -l zh__stroke jobname

(2)通过增加 biblatex 选项来实现(此时biber编译无需另加选项),比如:

\usepackage[backend=biber,style=gb7714-2015ay,sortlocale=zh__pinyin]{biblatex}

  • 作者年制参考文献表目前的排序时升序排列,能不能改成降序排序?

能,通过修改sorting选项实现:

\usepackage[backend=biber,style=gb7714-2015ay,sorting=gbnytd]{biblatex}

可用的选项值包括:

nty 按照姓名、标题、年份排序。
nyt 按照姓名、年份、标题排序。
nyvt 按照姓名、年份、卷数、标题排序。
anyt 按照字母标签、姓名、年份、标题排序。
anyvt 按照字母标签、姓名、年份、卷数、标题排序。
ynt 按照年份、姓名、标题排序。
ydnt 按照年份(降序)、姓名、标题排序。
none 不进行排序。所有的条目按照引用顺序处理。
gb7714-2015 以语言、作者、年份、标题、升序排列
gbnytd 以语言、作者、年份、标题、降序排列
gbynta 以语言、年份、作者、标题、升序排列
gbyntd 以语言、年份、作者、标题、降序排列
  • 如果我还希望顺序编码的文献著录表以拼音排序,请问该怎么操作?

顺序编码文献著录表默认是按引用顺序排序,但可以通过设置sorting选项进行调整,比如sorting=nyt表示按作者姓名年份以及文献标题进行排序。要使中文能按拼音排序,可以设置本地化排序调整方案,即sortlocale选项,比如:

\usepackage[backend=biber,citestyle=gb7714-2015ay,bibstyle=gb7714-2015,sorting=nyt,sortlocale=zh__pinyin]{biblatex}

  • 我希望文献表以阿拉伯数字编号,而正文中的引用标签使用作者和年份标注而不是数字,请问我该如何处理?

可以设置不同的标注和著录样式,比如标注样式用作者年制,而著录样式用顺序编码制,比如:

\usepackage[backend=biber,citestyle=gb7714-2015ay,bibstyle=gb7714-2015]{biblatex}

参见:issue:参考文献的顺序

  • 请问如果参考文献中存在一些特殊字符比如&或者一些特殊命令比如\LaTex{}等,是不是会出现问题?

通常不会出现问题,直接输入即可,当出现问题时可以手动调整比如修改为\&{\LaTex{}}

  • 如果希望在参考文献中直接使用一些unicode字符比如希腊字母等而不想用数学环境中的命令,请问该怎么处理?

直接显示希腊字母等unicode字符需要字体的支持,比如CMU Serif等,可以在整个文档全局使用该字体,也可以仅在文献表中使用该字体,比如:

{
\newcommand{\ftcmu}{\fontspec{CMU Serif}\selectfont}
\renewcommand{\bibfont}{\ftcmu}%设置英文字体不影响中文字体
\printbibliography
}

当然字体设置需要fontspec宏包的支持。

  • 如何修改参考文献文献表的垂直间距(竖直间距)?

设置如下尺寸即可

% 间距的控制
\setlength{\bibitemsep}{0ex}
\setlength{\bibnamesep}{0ex}
\setlength{\bibinitsep}{0ex}

其中itemsep设置各条文献之间的间隔,一般够用,后面两个常在西文中使用。具体意义参考biblatex-zh-cn

  • 如何修参考文献表的缩进?

对于著者-出版年制文献表,设置如下尺寸即可:

% 文献表中各条文献的缩进控制
\setlength{\bibitemindent}{0em} % bibitemindent表示一条文献中第一行相对后面各行的缩进
\setlength{\bibhang}{0pt} % 著者-出版年制中 bibhang 表示的各行起始位置到页边的距离     

对于顺序编码制文献表,可以采用如下方法:

由于顺序编码制存在数字标签,且其宽度与参考文献数量相关的,在biblatex中这个宽度是一个动态变量,不是提前设定的,而是在文献表生成时给出,所以设定缩进需要更复杂的操作。

对于采用list环境的文献表,即设置gbalign=left、right、center时,那么需要修改文献表环境来设定缩进,比如:

%调整顺序标签与文献内容的间距
\setlength{\biblabelsep}{2mm}
%修改对齐环境-使不缩进
\defbibenvironment{bibliography}
  {\list
     {\printtext[labelnumberwidth]{%
        \printfield{labelprefix}%
        \printfield{labelnumber}}}
     {%这里是所做的调整,通过设置\bibitemindent,\bibhang调整缩进
     \addtolength{\bibitemindent}{\labelnumberwidth}%
    \addtolength{\bibitemindent}{\biblabelsep}%
    \addtolength{\bibhang}{-\labelnumberwidth} %
    \addtolength{\bibhang}{-\biblabelsep}%
    %以下是默认的设置
     \setlength{\labelwidth}{\labelnumberwidth}%
      \setlength{\labelsep}{\biblabelsep}%
      \setlength{\leftmargin}{\bibhang}%
      \addtolength{\leftmargin}{\labelnumberwidth}%
      \setlength{\itemindent}{\bibitemindent}%
      \setlength{\itemsep}{\bibitemsep}%
      \setlength{\parsep}{\bibparsep}}%
      \renewcommand*{\makelabel}[1]{\hss##1}}
  {\endlist}
  {\item}

对于不采用list环境的文献表,即设置gbalign=gb7714-2015时,可以采用如下设定:

%调整顺序标签与文献内容的间距
\setlength{\biblabelsep}{2mm}
%修改对齐环境-使不缩进
\renewcommand{\itemcmd}{%
\settowidth{\lengthid}{\mkgbnumlabel{\printfield{labelnumber}}}
%%这里是所做的调整,以下两句通过调整\lengthid来调整缩进
\setlength{\lengthid}{0pt}
\addtolength{\lengthid}{-\biblabelsep}
%如下是默认设置
\addtolength{\lengthid}{\biblabelsep}
\setlength{\lengthlw}{\textwidth}
\addtolength{\lengthlw}{-\lengthid}
\addvspace{\bibitemsep}%恢复\bibitemsep的作用
%\parshape 2 0em \textwidth \lengthid \lengthlw
\hangindent\lengthid
\mkgbnumlabel{\printfield{labelnumber}}%
\hspace{\biblabelsep}}

示例见:https://github.com/hushidong/biblatex-gb7714-2015/issues/62

  • 如何修改参考文献表的字体字号?

通过修改如下命令实现

% 字体的控制: \textit, sl, emph-楷体, \textbf, sf-黑体, \texttt-仿宋, \textsc, md, up-宋体
% 全局字体
\renewcommand{\bibfont}{\zihao{-5}}%\fangsong
% 题名字体
\renewcommand{\bibauthorfont}{\bfseries\color{teal}}%
\renewcommand{\bibtitlefont}{\ttfamily\color{blue}}%
\renewcommand{\bibpubfont}{\itshape\color{violet}}%
% url和doi字体
\def\UrlFont{\ttfamily} %\urlstyle{sf} %\def\UrlFont{\bfseries}

  • 我习惯用传统的bst文件来生成参考文献,有没有GB/T 7714-2015标准的实现版本?

GB/T 7714-2015标准实现的bst版本,已经由zeping lee开发完毕,直接使用即可。

  • 我在使用过程中遇到了一些无法理解和无法解决的问题,怎么办?

请邮件联系hzzmail@163.com或在项目内发issue提问即可。

4.2 Bibliography format/文献表著录格式

  • 请问可以在参考文献表中实现类似于word那样的与文献内容等间距标签对齐格式么?

可以,latex的列表通常用list来实现,因此一般列表的内容都是对齐的, 此时如果标签右对齐的,那么标签和内容等间距,但标签左侧是不对齐的。 如果标签是左对齐的,那么标签和内容的间距不相等。 如果要求标签左侧对齐,且标签与内容等间距必须放弃使用list。 biblatex-7714-2015的顺序编码制样式特别设计了这样的环境,以保持和word一致。通过设置选项gbalign来实现:

\usepackage[backend=biber,bibstyle=gb7714-2015,gbalign=gb7714-2015]{biblatex}

  • 如果不希望在参考文献表中出现类似“出版地不详”“出版者不详”等信息时,请问该怎么处理?

设置选项gbpub可以实现,当gbpub=false时,biblatex-gb7714-2015宏包会放弃国标的要求,不使用“出版地不详”等补充信息:

\usepackage[backend=biber,bibstyle=gb7714-2015,gbpub=false]{biblatex}

  • 我觉得文献表中英文作者全部用大写不好看,请问能换一种大小写方式么?

能,通过设置gbnamefmt可以实现,默认情况下gbnamefmt=uppercase,作者姓名字母全部大写。 当设置gbnamefmt=lowercase时,biblatex-gb7714-2015宏包对于bib文件中的作者姓名的大小写不做改变, 这时可以在bib文件中手动设置想要的大小写方式。 当要实现类似ZHAO Yu-xin这样的拼音方式,则可以设置gbnamefmt=pinyin:

\usepackage[backend=biber,bibstyle=gb7714-2015,gbnamefmt=lowercase]{biblatex}

  • 如果不希望在参考文献表中出现类似“[M]”“[J]”等文献类型标识符时,请问该怎么处理?

可通过设置选项gbtype=false实现:

\usepackage[backend=biber,bibstyle=gb7714-2015,gbtype=false]{biblatex}

  • 如果不希望在参考文献表中出现网址信息时,请问该怎么处理?

可通过设置选项url=false实现:

\usepackage[backend=biber,bibstyle=gb7714-2015,url=false]{biblatex}

  • 如果不希望在参考文献表中出现DOI信息时,请问该怎么处理?

可通过设置选项doi=false实现:

\usepackage[backend=biber,bibstyle=gb7714-2015,doi=false]{biblatex}

  • 如果对当前文献中的url或doi显示效果(包括间距和断行)不满意,能否进行调整?

能,可以通过设置三个计数器的值来调整,取值范围0到9999,计数器的值越大则越容易在相应的内容后断行:

\setcounter{biburlnumpenalty}{100}%大于0允许在数字后面断行
\setcounter{biburlucpenalty}{100}%大于0允许在大写字母后面断行
\setcounter{biburllcpenalty}{100}%大于0允许在小写字母后面断行

  • 当参考文献没有作者时,希望用佚名或Anon代替作者时,请问该怎么处理?

可通过设置选项gbnoauthor=true实现,注意该处理主要用在作者年制中:

\usepackage[backend=biber,bibstyle=gb7714-2015,gbnoauthor=true]{biblatex}

  • 如果希望参考文献表中文献作者数量超过国标规定的3个时,请问该怎么处理?

可通过设置选项maxbibnames,minbibnames实现,比如下面的设置用于显示5个作者:

\usepackage[backend=biber,bibstyle=gb7714-2015,maxbibnames=5,minbibnames=5]{biblatex}

  • 请问如何将作者之间的分隔符调整为and而不是用逗号?

可以通过重设两个分隔符来实现,分别是multinamedelim和finalnamedelim。低版本的biblatex直接重定义命令\multinamedelim\finalnamedelim,高版本的biblatex可以使用分隔符环境,这样可以在标注、文献表等不同位置直接使用不同的分隔符,而不像低版本biblatex那样只能在不同的位置修改局部定义。比如:

\DeclareDelimFormat[bib]{multinamedelim}{\addspace and \addspace}
\DeclareDelimFormat[bib]{finalnamedelim}{\addspace and \addspace}
\DeclareDelimFormat[cite]{multinamedelim}{\addcomma\addspace}
\DeclareDelimFormat[cite]{finalnamedelim}{\addcomma\addspace}

  • 请问如何使文献表中文献标题的是句首字母大写而其它所有字母均小写?

默认情况下,biblatex-gb7714-2015仅对标题首字母做调整,使其变成为大写,而其他字母大小写不做处理,因此要得到想要的字母大小写格式,需要在bib文件输入参考文献信息时给出需要的除首字母外的其它字母的大小写格式。

若有特殊情况,需要首字母为小写,可采用如下两种方法:

(1)根据字符大小写更换命令比如

{\MakeLowercase i}FogSim title contents

(2)修改titlecase域格式,即将如下命令放到导言区中,放biblatex后面

\DeclareFieldFormat{titlecase}{\iftoggle{bbx:titlelink}{%
\iffieldundef{url}{#1}{%
\href{\thefield{url}}{#1}}}{#1}}%重设标题格式,将去除首字母大写

  • 请问如何使文献表中的期刊名是单词首字母大写的?

默认情况下,biblatex-gb7714-2015不对期刊名的字母大小写做处理, 因此需要在bib文件输入参考文献信息时给出需要的大小写格式。

  • 我想得到中英文对照的双语参考文献,请问该如何处理?

biblatex-gb7714-2015设计了两种多语言对照参考文献的实现方式, 一种是利用条目集的概念,另一种是利用关联条目的概念。 因此有两种方法:

(1)方法一,动态定义条目集: 在导言区或正文中定义: \defbibentryset{易仕和,等,2013}{易仕和2013--,Yi2013--}

在正文中引用: 双语文献引用\cite{易仕和,等,2013}

(2)方法二,动态定义关联条目: 在导言区定义: \defdoublelangentry{易仕和2013--}{Yi2013--}

在正文中引用: 双语文献引用\cite{易仕和2013--}

  • 我想修改文献条目的日期项诸如格式,请问该如何处理?

参考文献中日期格式主要有四种修改方式: (1) 利用biblatex选项全局的修改日期格式 (2) 修改日期输出宏,使根据条目类型输出不同的日期格式 (3) 修改日期输出宏,使根据具体条目输出不同的日期格式 (4) 修改参考文献信息,使当前条目原样输出需要的格式

具体示例见:biblatex中如何修改参考文献中日期的著录格式

4.3 Citation format/正文引用的标注格式

  • 我希望在正文中同时使用上标和非上标的引用标签,请问该怎么操作?

可以使用不同的命令来实现上标和非上标的标签, 上标标签的命令为\cite{bibtexkey} ,非上标标签的命令为 \parencite{bibtexkey}。 当希望上标的标签也给出国标要求的页码时,则可以使用\cite[50-55]{bibtexkey}\pagescite[50-55]{bibtexkey}给出指定页码 或者\pagescite{bibtexkey} 直接使用bib文件中的页码。

  • 我在引用文献时已经给出作者信息,希望引用标签仅包含年份和页码信息或者仅包含年份信息时,该怎么操作?

需要给出年份的标签是作者年制的标签,可以使用命令\yearpagescite{bibtexkey}给出包含年份和页码信息的标签, 使用命令\yearcite{bibtexkey}给出仅包含年份的标签。

  • 在使用作者年制时,我希望文献表是按作者年份标题排序,而正文某处一个cite命令引用多个参考文献,且这些文献的标签是按年份作者标题排序,该怎么操作?

有两种方法:

(1) 一是自动排序

宏包加载时使用:

\usepackage[backend=biber,style=gb7714-2015ay,sortcites,sorting=ynt]{biblatex}

正文中引用:

\cite{refa2010,refb2008,refc2009}

然后在文献打印前加

\newrefcontext[sorting=nyt]

(2) 二是手动给出排序

宏包加载时使用

\usepackage[backend=biber,style=gb7714-2015ay]{biblatex}

引用多个文献时按照年份顺序给出引用关键字,即正文中引用:

\cite{refb2008,refc2009,refa2010}

参考:issue:citation的顺序和bibliography的顺序如何不关联

  • 在使用作者年制时,我希望文献表同一位置引用同一作者的不同的文献实现作者姓名的压缩,该怎么操作?

可以通过将gb7714-2015ay.cbx 中的引用的基础样式authoryear更换成authoryear-comp。

  • 请问希望正文中作者年制的标注(引用)标签中作者数量超过国标规定的1个时,该怎么处理?

可通过设置选项maxcitenames,mincitenames实现,比如下面的设置用于显示5个作者:

\usepackage[backend=biber,style=gb7714-2015ay,maxcitenames=5,mincitenames=5]{biblatex}

  • 请问希望正文中作者年制的标注(引用)标签中作者数量只能是1个,而不管是否存在歧义时,该怎么处理?

可通过设置选项uniquelist=false实现,该设置标签中的作者只会是指定的1个:

\usepackage[backend=biber,style=gb7714-2015ay,uniquelist=false]{biblatex}

  • 请问希望正文中作者年制的标注(引用)标签中作者数量只能是1个,且只用其作者的姓而不管是否存在歧义时,该怎么处理?

可通过设置选项uniquelist=false, uniquename=false实现,该设置标签中的作者只会是指定的1个且只用该作者的姓:

\usepackage[backend=biber,style=gb7714-2015ay,uniquelist=false,uniquename=false]{biblatex}

  • 请问上标的标注(引用)标签过长导致行溢出,该怎么处理?

上标的标注与行内的标注不一样,因此采用了上标的处理,所以上标的标注无法自动断行,因此在页边附近的长标注很有可能会溢出。由于上标标注的断行国标中并没有什么明确要求和说明,因此只能按照自己的方式进行处理,通常是将一个长标注手动分成两个短的标注,比如将:

\cite{key1,key2,key3,key4,key5,key6,key7}

变换成:

\cite{key1,key2,key3}\linebreak\cite{key4,key5,key6,key7}

如果两个cite之间还需要增加一个上标的逗号,那么可以手动处理比如增加\textsuperscript{,}

  • 在顺序编码制标签中,希望数字编码从两个连续编码就开始压缩,比如[1,2]压缩成[1-2],该怎么处理?

biblatex中处理顺序数字编码压缩的代码默认从3个连续编码开始压缩,比如[1,2,3]压缩成[1-3]。如果要修改为从2个连续编码开始压缩,只需要做一个很简单的修改即可:

%该宏的目的是抛弃压缩内部的编号,而仅输出最后一个编号,主要通过cbx@tempcnta来控制
%一般情况下cbx@tempcnta为0,所以该宏不输出任何内容。当cbx@tempcnta在cite:comp:comp宏中更改变大后
%说明开始进入需要压缩的范围,当到压缩终点时,cbx@tempcnta必然大于1,则输出内容。
%修改第二行的数字1为0即可将默认的3个开始压缩变为2个开始压缩。
\renewbibmacro*{cite:dump}{
  \ifnumgreater{\value{cbx@tempcnta}}{0}
    {\ifnumgreater{\value{cbx@tempcnta}}{1}%1改为0,可以将压缩起始3个编号改为2个编号
       {\bibrangedash}
       {\multicitedelim}%
     \bibhyperref[\cbx@lastkey]{%
       \ifdef\cbx@lastprefix
         {\printtext[labelprefix]{\cbx@lastprefix}}
         {}%
       \printtext[labelnumber]{\cbx@lastnumber}}}
    {}%
  \setcounter{cbx@tempcnta}{0}%
  \global\undef\cbx@lastprefix}
  • 在正文中的某一部分,希望取消顺序编码标签中的压缩,而其他部分保持这种压缩,该怎么处理?

顺序数字编码压缩的代码,主要有cite:comp:comp宏控制,因此需要局部取消压缩,可以局部的修改该宏。修改很简单,只需要注释掉其中的一行,在需要取消压缩的环境中,重定义该宏,比如:

\renewbibmacro*{cite:comp:comp}{%
  \ifboolexpr{
    ( test {\iffieldundef{labelprefix}} and test {\ifundef\cbx@lastprefix} )
    or
    test {\iffieldequals{labelprefix}{\cbx@lastprefix}}
  }
    {\ifnumequal{\thefield{labelnumber}}{\value{cbx@tempcntb}}
       {\savefield{entrykey}{\cbx@lastkey}%
        \savefield{labelnumber}{\cbx@lastnumber}%
        \addtocounter{cbx@tempcnta}{1}}
       {\ifnumequal{\thefield{labelnumber}}{\value{cbx@tempcntb}-1}
          {}
          {\usebibmacro{cite:dump}%
           \ifnumgreater{\value{cbx@tempcntb}}{-1}
             {\multicitedelim}
             {}%
           \printtext[bibhyperref]{%
             \printfield{labelprefix}%
             \printfield{labelnumber}}}}}
    {\usebibmacro{cite:comp:end}}%
  %\setcounter{cbx@tempcntb}{\thefield{labelnumber}}%%注释该行,以取消压缩
  \savefield{labelprefix}{\cbx@lastprefix}}

5. Examples/著录和标注结果示例

  • 顺序编码制

示例a

  • 作者年制

示例b

  • 姓名的格式更改

对于bib文件中的如下条目,有:

    @Article{Zhang2007-500-503,
      Title                    = {The design and experimental investigations of supersonic length shorted nozzle},
      Author                   = {Zhang, Min-li and Yi, Shi-he and Zhao, Yu-xin},
      Journal                  = {ACTA AERODYNAMICA SINICA},
      Number                   = {4},
      Pages                    = {500-503},
      Volume                   = {25},
      Year                     = {2007}
    }

    @Book{Yi2013--,
      Title                    = {Supersonic and hypersonic nozzle design},
      Address                  = {Beijing},
      Author                   = {Yi, Shi he and Zhao, Yu xin and He, Lin and Zhang, Min li},
      Publisher                = {National Defense Industry Press},
      Year                     = {2013}
    }

    @Book{LIAO2012--,
      Title                    = {Electronic countermeasure techniques for missile penetration},
      Address                  = {Beijing},
      Author                   = {LIAO, ping and JIANG, qin bo},
      Publisher                = {National Defense Industry Press},
      Year                     = {2013}
    }

    @Book{LIU2003--,
      Title                    = {Introduction of Ballistic Misille Techniques},
      Address                  = {Beijing},
      Author                   = {LIU, shi Qiu},
      Publisher                = {China Astronautic Publishing House},
      Year                     = {2003}
    }

示例c


Usage

  • for numerical sequence style: gb7714-2015

    \usepackage[backend=biber,style=gb7714-2015]{biblatex}

    • add an option gbalign to control the align style of the numerical label:

      gbalign=right for the label ragged left in a list environment, this is the default setting.

      gbalign=center for the same width label in a list environment with the number centered in a wrapper like bracket []

      gbalign=left for the label ragged right in list environment

      gbalign=gb7714-2015 for the label in paragraph with same separation space between label and content of the reference entry

      \usepackage[backend=biber,style=gb7714-2015,gbalign=gb7714-2015]{biblatex}

    • add an option gbpub for dealing publishing items (This option is also for author-year style):

      gbpub = true for gb7714 style, to print [出版者不详] and the like when publisher or address is absent, this is the default setting.

      gbpub = false for standard style, not to print the additional infomation.

      \usepackage[backend=biber,style=gb7714-2015,gbpub=true]{biblatex}

    • add an option gbnamefmt for dealing author name's letter case (This option is also for author-year style):

      gbnamefmt = uppercase for gb7714 style, to capitalize all the letters of the name, like: ZHANG M L, this is the default setting.

      gbnamefmt = lowercase for gb7714 style, do no case switch of the name, like: Zhang M L

      gbnamefmt = givenahead for standard style, given-family style, like: M. L. Zhang as the ieee style

      gbnamefmt = familyahead for standard style, family-given style, like: Zhang, M. L. as the apa style.

      gbnamefmt = pinyin for a common Chinese style, like: ZHANG Min-li, YI Shi-he and so on.

      gbnamefmt = reserveorder for standard style:family-given/given-family style

      the name format can be set per-entry using a field nameformat, add this field like nameformat={pinyin} to an entry in the bib file to set the entry's name format.

      \usepackage[backend=biber,style=gb7714-2015,gbnamefmt=uppercase]{biblatex}

    • add an option gbbiblabel to control the format of the numerical label:

      gbbiblabel=bracket for the numerical number in the label wrapped by bracket, like: [1], this is the default setting.

      gbbiblabel=parens for the numerical number in the label wrapped by parenthesis, like: (1)

      gbbiblabel=plain for the numerical number in the label wrapped by nothing, like: 1

      gbbiblabel=dot for the numerical number in the label followed with dot, like: 1.

      gbbiblabel=box for the numerical number in the label wrapped by box which generated by \framebox

      gbbiblabel=circle for the numerical number in the label wrapped by circle which generated by \textcircled

      \usepackage[backend=biber,style=gb7714-2015,gbbiblabel=bracket]{biblatex}

    • add an option gbtype to control the output of the reference type and carrier identifier like [J/OL] (This option is also for author year style):

      gbtype = true for gb7714 style, print a title with the identifier, like: an on-line article [J/OL], this is the default setting.

      gbtype = false for none identifier, print a title without identifier, like: an on-line article

      \usepackage[backend=biber,style=gb7714-2015,gbtype=true]{biblatex}

    • add an option gbfieldtype to control the output of field type:

      gbfieldtype = true to print type field, like the thesis type: PHD thesis or 博士学位论文。please use \DefineBibliographyStrings{english}{mathesis={str you want}},\DefineBibliographyStrings{english}{phdthesis={str you want}}, \DefineBibliographyStrings{english}{mathesiscn={str you want}},\DefineBibliographyStrings{english}{phdthesiscn={str you want}} to define the output string, or set it in bibfile like: type={str you want},

      gbfieldtype = false not to print type field.

      \usepackage[backend=biber,style=gb7714-2015,gbfieldtype=true]{biblatex}

    • add an option gbpunctin to control the output of // before bookauthor for entrytypes like inbook/incollection/inproceedings(This option is also for author year style):

    gbpunctin=true for gb7714 style, to output //, this is the default setting

      `gbpunctin=false` for standard style, to output a bibstring, for English it is `IN:`, If you want to eliminate it at all, please redefine the bibstring like `\DefineBibliographyStrings{english}{in={}}` and `\DefineBibliographyStrings{english}{incn={}}`in the preamble.

    \usepackage[backend=biber,style=gb7714-2015,gbpunctin=true]{biblatex}

    • add an option gbctexset to control the bibliography heading's setting method (This option is also for author year style):

      gbctexset=true , the bibliography heading can be set by \bibname or \refname, this is the default setting.

      gbpunctin=false, the heading can be set by bibstring like \DefineBibliographyStrings{english}{bibliography={title you want}} or \DefineBibliographyStrings{english}{references={title you want}}

      or alternatively, it can also be set through the printbibliography option title, like printbibliography[title=title you want].

    \usepackage[backend=biber,style=gb7714-2015,gbctexset=true]{biblatex}

    • add an option gbcodegbk to deal the tex source file encoded with GBK (This option is also for author year style):

      gbcodegbk=true , if you want to compile the GBK encoded source file with pdflatex or latex

      gbcodegbk=false, if you want to compile the utf-8 endcoded source file with xelatex, this is the default setting.

    \usepackage[backend=biber,style=gb7714-2015,gbcodegbk=true]{biblatex}

    • add an option gbtitlelink to control the hyperlink of title field (This option is also for author year style):

      gbtitlelink = false not to add hyperlink, this is the default setting.

      gbtitlelink = true to set the title as a hyperlink.

      \usepackage[backend=biber,style=gb7714-2015,gbtitlelink=true]{biblatex}

    • add an option gbfootbib to control the bibliography in footnote (This option is also for author year style):

      gbfootbib = true make patches to match the standard, this is the default setting.

      gbfootbib = false not to patch.

      \usepackage[backend=biber,style=gb7714-2015,gbtitlelink=true]{biblatex}

    • add options gbcitelocal gbbiblocal to control the local strings in citation and bibliography respectively, the gblocal set the both options (These options are also for author year style):

      gbcitelocal = gb7714-2015 to output local strings according to the reference's language, this is the default setting.

      gbcitelocal = chinese to output local strings with chinese language word like "等".

      gbcitelocal = english to output local strings with western language word like "et al.".

      \usepackage[backend=biber,style=gb7714-2015,gbcitelocal = chinese]{biblatex}

    • add an option gbstrict to control the output of some unnecessary fields for GB/T7714-2015 (This option is also for author year style).

      gbstrict=true, not to print those fields such as language, eprint, this is the default setting.

      gbstrict=false, to output them as the standard style

      \usepackage[backend=biber,style=gb7714-2015,gbstrict=true]{biblatex}

    • add an option gbfieldstd to control the format of some fields such as title, url and pages (This option is also for author year style):

      gbfieldstd = false for gb7714 style, format of the fields follows the GB/T7714-2015 standard, this is the default setting.

      gbfieldstd = true for standard style.

      \usepackage[backend=biber,style=gb7714-2015,gbfieldstd=true]{biblatex}

  • for multi-style: gb7714-2015ms

    In order to use two styles in a tex file, add a style gb7714-2015ms. option gbstyle is added to control the using mode. gbstyle=true means all references are printed with GB/T7714-2015 style, and gbstyle=false means the chinese references are printed with GB/T7714-2015 style while the other references are printed with standard style shipped by biblatex, and gbstyle=true is the default set. all the options for numerical sequence style gb7714-2015 can also be used in gb7714-2015ms.

    \usepackage[backend=biber,style=gb7714-2015ms,gbstyle=false]{biblatex}

  • for author year style: gb7714-2015ay

    \usepackage[backend=biber,style=gb7714-2015ay,gbpub=true]{biblatex}

    • add an option gbnoauthor for dealing undefined author:

      gbnoauthor = true for gb7714 style, to print 佚名 or Anon when the author of the entry is absent.

      gbnoauthor = false for standard style, not to pring anything, this is the default setting.

      \usepackage[backend=biber,style=gb7714-2015ay,gbnoauthor=true]{biblatex}

    • add an option value mergedate=none to control the date in bibliography:

      mergedate=true to output date only after author,like:LAMPORT L, (1986). Document Preparation System[M]. [S.l.]: Addison-Wesley Reading, MA.

      mergedate=false to output date after author and in publish items,like:LAMPORT L, (1986). Document Preparation System[M]. [S.l.]: Addison-Wesley Reading, MA, 1986.

      mergedate=none to output date only in publish items,like:LAMPORT L. Document Preparation System[M]. [S.l.]: Addison-Wesley Reading, MA, 1986.

      do not set mergedate output like:LAMPORT L, 1986. Document Preparation System[M]. [S.l.]: Addison-Wesley Reading, MA.

      \usepackage[backend=biber,style=gb7714-2015ay,mergedate=none]{biblatex}

    • add an option gblanorder to control sequence of reference groups of different languagesin the bibliography:

      gblanorder=chineseahead to set the sequence as: cn;jp;kr;en;fr;ru

      gblanorder=englishahead to set the sequence as: en;fr;ru;cn;jp;kr

      gblanorder=user defined string like: cn;en;jp;kr;fr;ru to set the sequence as: cn;en;jp;kr;fr;ru.

      \usepackage[backend=biber,style=gb7714-2015ay,gblanorder=cn;en;jp;fr;kr;ru]{biblatex}

  • for perl script transformation tool(only for the numerical style)

    perl gb7714texttobib.pl in=textfilename out=bibfilename

A demonstration database is provided to show how to format input for the style. The biblatex-gb7714-2015 style works with texlive2014, texlive2015, texlive2016, texlive2017 , texlive2018 and so on.

please see the file 'biblatex-gb7714-2015.pdf' for further information!

Version history:

  • 2016/05/20 v1.0
  • 2016/10/23 v1.0a
  • 2016/11/11 v1.0b
  • 2016/11/14 v1.0c
  • 2016/11/24 v1.0d
  • 2016/12/07 v1.0e
  • 2017/02/26 v1.0g
  • 2017/04/11 v1.0h
  • 2017/11/21 v1.0i
  • 2018/01/20 v1.0j
  • 2018/04/03 v1.0k
  • 2018/06/01 v1.0l
  • 2018/08/14 v1.0m,CTAN
  • 2018/11/04 v1.0n
  • 2018/12/22 v1.0o
  • 2019/01/19 v1.0p
  • 2019/02/11 v1.0q
  • 2019/03/28 v1.0r
  • 2019/03/29 v1.0rm,rename erj to chinese-erj,ctan
  • 2019/08/28 v1.0s
  • 2020/03/04 v1.0t,ctan

Update history:

update: tex

update: tex

空文件

简介

从github克隆的biblatex-gb7714-2015项目,原项目地址https://github.com/hushidong/biblatex-gb7714-2015 展开 收起
TeX/LaTeX
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
TeX/LaTeX
1
https://gitee.com/springwr/biblatex-gb7714-2015-backup.git
git@gitee.com:springwr/biblatex-gb7714-2015-backup.git
springwr
biblatex-gb7714-2015-backup
biblatex-gb7714-2015-backup
master

搜索帮助