Biblatex: 작업 문서를 기사로 조판하는 방법

Biblatex: 작업 문서를 기사로 조판하는 방법

저는 biblatex에 Authoryear 스타일을 사용하고 있습니다. Working Paper 시리즈에 게재된 Working Paper를 기사로 조판하고 싶습니다. 제목을 인용문 사이에 넣고, Working Paper 시리즈의 제목을 저널 제목처럼 생각했으면 한다는 의미에서요. 현재 작업 보고서는 어느 정도 책으로 취급됩니다.

bib 파일 자체의 항목을 변경하지 않고 이를 수행할 수 있는 방법이 있습니까?

MWE :

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

관련 정보