-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathreadme.tex
42 lines (40 loc) · 1.23 KB
/
readme.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
\documentclass{ctexart}
\usepackage{minted}
\usepackage[
backend = biber, style=gbt77142005 ,utf8,
giveninits = true, sortgiveninits = true
]{biblatex}
\addbibresource{ref.bib}
\renewcommand{\bibfont}{\zihao{5}}
\title{biblatex-gbt77142005}
\author{沈周}
\begin{document}
\maketitle
\section{使用方法}
本模板是在caspervector基础上改写的,其使用方法与caspervector相同,可通过
\begin{minted}{bash}
texdoc caspervector
\end{minted}
查看其帮助文档。调用方法如下:
\begin{minted}[breaklines,frame=single]{latex}
\usepackage[
backend = biber, style=gbt77142005 ,utf8,
giveninits = true, sortgiveninits = true
]{biblatex}
\end{minted}
\subsection{特别说明}
对于作者是组织的情况,组织名是区分大小写的,所以添加了两个字段organization和
bookorganization,分别对应author和bookauthor。比如
\begin{minted}[breaklines,frame=single]{bibtex}
@online{6-2,
organization= {{Online Computer Library Center, Inc.}},
title = {History of OCLC},
type = {EB/OL},
url = {http://www.oclc.org/about/history/default.htm},
urldate = {2000-01-08},
language = {english},
}
\end{minted}
\nocite{*}
\printbibliography[title={参考文献},heading=bibintoc]
\end{document}