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}}

相關內容