如何在参考书目中正确显示带有翻译的作者姓名?

如何在参考书目中正确显示带有翻译的作者姓名?

我希望我的参考书目条目以国务院开头。我尝试了以下方法:

\documentclass[12pt]{article}

\usepackage{url}

\usepackage[notes]{biblatex-chicago}
\bibliography{document}
\begin{document}

Example\autocite{Guowuyuan}

\nocite{*} 
\printbibliography 
\end{document}

参考书目如下:

@article{Guowuyuan2008, 
entrysubtype ={newspaper},
author = {Guowuyuan[State Council]},
title={Guowuyuan guanyu yinfa Wenchuan dizhen
zaihou huifu chongjian zongtiguihua de tongzhi
[Notice of the State Council on Printing and Distributing
the Master Plan for Rebuilding and Relief after the Wenchuan Earthquake]},
url= {http://www.gov.cn/zhengce/content/2008-09/24/content_6121.htm},
year={2008}, month={9}, day = {19}
}

但我明白: 在此处输入图片描述

我了解问题,但没有解决方案。

编辑:我给出了引号的理想位置如下: 在此处输入图片描述

答案1

biblatex-chicago有一个名为的字段nameaddon可以用于这样的事情。

\documentclass[12pt]{article}

\usepackage[notes]{biblatex-chicago}

\renewcommand*{\ctitleaddonpunct}{\addspace}
\DeclareFieldFormat{titleaddon}{\mkbibbrackets{#1}}

\begin{filecontents}{\jobname.bib}
@article{Guowuyuan2008, 
  entrysubtype = {newspaper},
  author       = {Guowuyuan},
  nameaddon    = {State Council},
  title        = {Guowuyuan guanyu yinfa Wenchuan dizhen
                  zaihou huifu chongjian zongtiguihua de tongzhi},
  titleaddon   = {Notice of the State Council on Printing and Distributing
                  the Master Plan for Rebuilding and Relief after the Wenchuan Earthquake},
  url          = {http://www.gov.cn/zhengce/content/2008-09/24/content_6121.htm},
  date         = {2008-09-19},
}
\end{filecontents}
\addbibresource{\jobname.bib}

\begin{document}
Example\autocite{Guowuyuan2008}

\nocite{*} 
\printbibliography
\end{document}

国务院[国务院]。 “国务委员兼外长印发《汶川地震灾后恢复重建总体规划》”。 《国务院关于印发汶川地震灾后恢复重建和抗震救灾总体规划的通知》,2008 年 9 月 19 日。http://www.gov.cn/zhengce/content/2008-09/24/content 6121 .htm。

相关内容