Biblatex:如何将工作论文排版为文章

Biblatex:如何将工作论文排版为文章

我正在使用 biblatex 的 authoryear 样式。我想将已在工作论文系列中发表的工作论文排版为一篇文章。从某种意义上说,我希望将标题放在引号之间,并将工作论文系列的标题视为期刊标题。目前,工作论文或多或少被视为一本书。

有没有办法在不改变 bib 文件本身的条目的情况下做到这一点?

分数维:

\documentclass{article}

\usepackage{hyperref}

\usepackage[
 backend=biber,  style=authoryear,  
 url=false,eprint=false,doi=false,dashed=false]{biblatex}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@article{acf_identification_2015,
    author               = {Ackerberg, Daniel and Caves, Kevin and Frazer, Garth},
    doi                  = {10.3982/ECTA13408},
    issn                 = {1468-0262},
    journal              = {Econometrica},
    keywords             = {Production functions , productivity , total factor productivity , productivity growth},
    number               = {6},
    pages                = {2411--2451},
    publisher            = {Blackwell Publishing Ltd},
    title                = {Identification Properties of Recent Production Function Estimators},
    url                  = {http://dx.doi.org/10.3982/ECTA13408},
    volume               = {83},
    year                 = {2015},
}
@Report{ackerberg_structural_2006,
    author      = {Ackerberg, Daniel and Caves, Kevin and Frazer, Garth},
    title       = {Structural Identification of Production Functions},
    type        = {MPRA Paper},
    institution = {University Library of Munich, Germany},
    year        = {2006},
    number      = {38349},
    url         = {http://mpra.ub.uni-muenchen.de/38349/},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}

\section{Introduction}
Dummytext~\autocite{acf_identification_2015,ackerberg_structural_2006}.

\printbibliography
\end{document}

答案1

我发现了一个非常粗鲁的解决方法,即使用格式化命令:

% Titles of working papers should be in quotes
\DeclareFieldFormat[techreport,report,unpublished]{title}{\mkbibquote{#1}}
% The type or series should be in italics
\DeclareFieldFormat[techreport,report,unpublished]{type}{\mkbibemph{#1}}

相关内容