当前位置:   article > 正文

中文参考文献的一些内容

中文参考文献的一些内容

本博客关于中文参考文献的一些内容转载自如下链接:https://wenda.latexstudio.net/article-5014.html
(如有侵权,请联系博主删除)
中文参考文献推荐国标 GB/T 7714-2015, 目前有两种方式使用它. 首先是 BibTeX 方式

\begin{filecontents}{example.bib}
  @Book{adams2003sobolev,
    title     = {Sobolev Spaces},
    publisher = {Academic Press},
    year      = {2003},
    author    = {Adams, R. A. and Fournier, J. J. F.},
    series    = {Pure and Applied Mathematics},
    address   = {New York},
    isbn      = {9780080541297},
  }
  @Book{xie2008san,
    title     = {三维涡流场的有限元分析},
    publisher = {机械工业出版社},
    year      = {2008},
    author    = {谢德馨 and 姚缨英 and 白保东 and 李锦彪},
    address   = {北京},
    isbn      = {9787111087045},
    language  = {chinese},
    key       = {xie4 de2 xin1   yao2 ying1 ying1   bai2 bao3 dong1   li3 jin3 biao1}
  }
\end{filecontents}
\documentclass{ctexart}
\usepackage{hologo}
\usepackage{gbt7714}
\bibliographystyle{gbt7714-numerical}
\title{该怎么玩中文参考文献}
\author{啸行}
\date{today}
\begin{document}
  \maketitle
  其实玩中文参考文献没有什么难的, 只要你选择正确的宏包.
  如果用了 \hologo{BibTeX}, 那么可以调用 zepinglee 的 gbt7714 宏包, 最终参考文献的样式就是\cite{xie2008san,adams2003sobolev}.
  \bibliography{example}
\end{document}
  • 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

将以上内容编译后可查看结果

如果用的是 BibLaTeX

\begin{filecontents}{example.bib}
  @Book{adams2003sobolev,
    title     = {Sobolev Spaces},
    publisher = {Academic Press},
    year      = {2003},
    author    = {Adams, R. A. and Fournier, J. J. F.},
    series    = {Pure and Applied Mathematics},
    address   = {New York},
    isbn      = {9780080541297},
  }
  @Book{xie2008san,
    title     = {三维涡流场的有限元分析},
    publisher = {机械工业出版社},
    year      = {2008},
    author    = {谢德馨 and 姚缨英 and 白保东 and 李锦彪},
    address   = {北京},
    isbn      = {9787111087045},
    language  = {chinese},
    key       = {xie4 de2 xin1   yao2 ying1 ying1   bai2 bao3 dong1   li3 jin3 biao1}
  }
\end{filecontents}
\documentclass{ctexart}
\usepackage[backend=biber,style=gb7714-2015]{biblatex}
\addbibresource{example.bib}
\title{该怎么玩中文参考文献}
\author{啸行}
\date{today}
\begin{document}
  \maketitle
  其实玩中文参考文献没有什么难的, 只要你选择正确的宏包.
  如果用了 \texttt{BibLaTeX}, 那么可以调用 biblatex-gb7714-2015 样式, 最终参考文献的样式就是\cite{xie2008san,adams2003sobolev}.
  \printbibliography
\end{document}
  • 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
\begin{filecontents}{example.bib}
  @Book{adams2003sobolev,
    title     = {Sobolev Spaces},
    publisher = {Academic Press},
    year      = {2003},
    author    = {Adams, R. A. and Fournier, J. J. F.},
    series    = {Pure and Applied Mathematics},
    address   = {New York},
    isbn      = {9780080541297},
  }
  @Book{xie2008san,
    title     = {三维涡流场的有限元分析},
    publisher = {机械工业出版社},
    year      = {2008},
    author    = {谢德馨 and 姚缨英 and 白保东 and 李锦彪},
    address   = {北京},
    isbn      = {9787111087045},
    language  = {chinese},
    key       = {xie4 de2 xin1   yao2 ying1 ying1   bai2 bao3 dong1   li3 jin3 biao1}
  }
\end{filecontents}
\documentclass{ctexart}
\usepackage[backend=biber,style=caspervector,utf8,sorting=cenyt]{biblatex}
\addbibresource{example.bib}
\title{该怎么玩中文参考文献}
\author{啸行}
\date{today}
\begin{document}
  \maketitle
  其实玩中文参考文献没有什么难的, 只要你选择正确的宏包.
  如果用了 \texttt{BibLaTeX}, 那么还可以调用 caspervector 样式, 最终参考文献的样式就是\supercite{xie2008san,adams2003sobolev}.
  \printbibliography
\end{document}
  • 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
最后说明一点,如果你想让你的内容保持自己输入的样子,那就在bib文件里面编辑参考格式的时候用大括号把自己希望保持的内容包含起来。
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/762997
推荐阅读
相关标签
  

闽ICP备14008679号