Estoy preparando un CV y tengo una sección para informes técnicos, pero tengo problemas para incluir esta sección y algunas otras secciones en el documento final.
\begin{refsection} % This is a custom heading for those references marked as "Technical Report"
\nocite{*}
\printbibliography[sorting=chronological, type=techreport, title={technical reports}, keyword={Technical Report}, heading=subbibliography]
\end{refsection}
Definitivamente tengo una techreport
lista en mi .bib
archivo:
@article{Natarajan2011,
author = {Natarajan, Nagarajan and Singh-Blom, Ulf Martin and Tewari, Ambuj and Woods, John O and Dhillon, Inderjit S and Marcotte, Edward M},
file = {:Users/jwoods/Downloads/Papers/Natarajan2011.pdf:pdf},
journal = {UTCS Technical Report},
title = {{Predicting gene\textendash disease associations using multiple species data.}},
volume = {TR-11-37},
year = {2011},
type = {techreport},
keyword = {Technical Report}
Intenté usar los parámetros keyword
y type
de forma independiente, pero no me funciona. Curiosamente, el informe técnico aparece en la article
sección, aunque he tenido cuidado de excluir los informes técnicos:
\begin{refsection} % Articles that aren't in preparation
\nocite{*}
\printbibliography[sorting=chronological, type=article, title={articles}, notkeyword={In Preparation}, notkeyword={Technical Report}, heading=subbibliography]
\end{refsection}
También parece ignorar mis \DeclareBibliographyDriver
comandos en algunos casos, por ejemplo, para mi disertación:
\RequirePackage[style=verbose, maxnames=99, sorting=ydnt]{biblatex}
\DeclareFieldFormat[patent]{title}{#1\par}
\DeclareFieldFormat[article]{title}{#1\par}
\DeclareFieldFormat[book]{title}{#1\par}
\DeclareFieldFormat[inproceedings]{title}{#1\par}
\DeclareFieldFormat[phdthesis]{title}{#1\par}
%
% ... other declarations, which do work ...
%
\DeclareBibliographyDriver{phdthesis}{%
\printfield{title}%
\newblock%
\printnames{author}%
\par%
\newblock%
{%
\footnotesize\addfontfeature{Color=lightgray}%
\printfield{title}%
\setunit{\addcomma\space}%
\printfield{year}%
%\setunit{\addcomma\space}%
%\printlist{location}%
\newunit%
}
\par\vspace{0.3\baselineskip}
}
En cambio, se imprime en formato estándar de autor, título, cuando indiqué claramente el título en una línea y el autor en la siguiente.
Parece que \printbibliography
de alguna manera debo estar malinterpretando los comandos. ¿Alguien puede ayudarme a corregir este malentendido?
Respuesta1
¡Tres errores!.
- La
\printbibliography
opción (clave)type
no es filtrar las entradas por campotype
, es imprimir el bibitem porentry names
. significa,@book
,@article
, etc... (sin@
). El bibentry de ejemplo es@article
si se cambia a@techreport
funciona si latype
opción (\printbibliography
) esinforme.
Para filtrar por campo (diferente a las palabras clave), puede utilizar check
la opción y \defbibcheck
. Por ejemplo, para filtrar por type
igual ainforme técnico.
\defbibcheck{techreport}{%
\iffieldundef{type}
{\skipentry}
{\iffieldequalstr{type}{techreport}
{}
{\skipentry}}}
y
\printbibliography[check=techreport]
El campo bibtex
keywords
no espalabra clave. La entrada bibtex de ejemplo está usandopalabra clave.Por defecto
biblatex
no se utiliza la entradaphdthesis
. Utiliza lathesis
entrada paraphdthesis
ymastersthesis
. Y es posible utilizar eltype
campo para elegir si la entrada esmasterthesis
ophdthesis
. Cuando se define unentry
with@pdfthesis
,biblatex
'conviértelo' enthesis
entrada y define eltype
campo paratesis doctoral.
En el ejemplo de la pregunta es necesario redefinir el thesis
controlador y declarar el title
formato de thesis
entrada.
\DeclareFieldFormat[thesis]{title}{#1\par}
\DeclareBibliographyDriver{thesis}{%
\printfield{title}%
\newblock%
\printnames{author}%
\par%
\newblock%
{%
\printfield{title}%
\setunit{\addcomma\space}%
\printfield{year}%
\newunit%
}
\par\vspace{0.3\baselineskip}}
MWE:
\documentclass{article}
\RequirePackage[style=authoryear, maxnames=99]{biblatex}
\begin{filecontents}{MWE.bib}
@techreport{Natarajan2011,
author = {Natarajan, Nagarajan and Singh-Blom, Ulf Martin and Tewari, Ambuj and Woods, John O and Dhillon, Inderjit S and Marcotte, Edward M},
file = {:Users/jwoods/Downloads/Papers/Natarajan2011.pdf:pdf},
journal = {UTCS Technical Report},
title = {{Predicting gene\textendash disease associations using multiple species data.}},
volume = {TR-11-37},
year = {2011},
type = {techreport},
keywords = {Technical Report}}
@phdthesis{thesis000,
author = {Author Name},
title = {Title of the thesis},
type= {phdthesis},
year = {2011}}
\end{filecontents}
\addbibresource{MWE.bib}
\defbibcheck{techreport}{%
\iffieldundef{type}
{\skipentry}
{\iffieldequalstr{type}{techreport}
{}
{\skipentry}}}
\DeclareFieldFormat[thesis]{title}{#1\par}
\DeclareBibliographyDriver{thesis}{%
\printfield{title}%
\newblock%
\printnames{author}%
\par%
\newblock%
{%
\printfield{title}%
\setunit{\addcomma\space}%
\printfield{year}%
\newunit%
}
\par\vspace{0.3\baselineskip}}
\begin{document}
\begin{refsection}
\nocite{*}
\printbibliography[type=report,title=Printing the {\it reports} entries]
\printbibliography[check=techreport,title=Filtering by {\it type} field equals to techreport]
\printbibliography[keyword=Technical Report,title=Filtering by keyword]
\printbibliography[title=Editing the {\it thesis} driver, type=thesis]
\end{refsection}
\end{document}