Biblatex: como compor um documento de trabalho como um artigo

Biblatex: como compor um documento de trabalho como um artigo

Estou usando o estilo authoryear para biblatex. Gostaria de compor um documento de trabalho que foi publicado em uma série de documentos de trabalho como um artigo. No sentido de que gostaria que o título fosse colocado entre aspas e que o título da série de Working Papers fosse considerado como um título de periódico. Atualmente, o documento de trabalho é tratado mais ou menos como um livro.

Existe uma maneira de fazer isso sem alterar as entradas no próprio arquivo 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}

Responder1

Encontrei uma solução alternativa muito rudimentar, usando os comandos de formatação:

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

informação relacionada