Tener problemas para imprimir ciertas refsecciones

Tener problemas para imprimir ciertas refsecciones

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 techreportlista en mi .bibarchivo:

@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 keywordy typede forma independiente, pero no me funciona. Curiosamente, el informe técnico aparece en la articlesecció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 \DeclareBibliographyDrivercomandos 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 \printbibliographyde alguna manera debo estar malinterpretando los comandos. ¿Alguien puede ayudarme a corregir este malentendido?

Respuesta1

¡Tres errores!.

  1. La \printbibliographyopción (clave) type no es filtrar las entradas por campo type, es imprimir el bibitem por entry names. significa, @book, @article, etc... (sin @). El bibentry de ejemplo es @articlesi se cambia a @techreportfunciona si la typeopción ( \printbibliography) esinforme.

Para filtrar por campo (diferente a las palabras clave), puede utilizar checkla opción y \defbibcheck. Por ejemplo, para filtrar por typeigual ainforme técnico.

\defbibcheck{techreport}{%
\iffieldundef{type}
 {\skipentry}
 {\iffieldequalstr{type}{techreport}
    {}
    {\skipentry}}}

y

\printbibliography[check=techreport]

  1. El campo bibtex keywordsno espalabra clave. La entrada bibtex de ejemplo está usandopalabra clave.

  2. Por defecto biblatexno se utiliza la entrada phdthesis. Utiliza la thesisentrada para phdthesisy mastersthesis. Y es posible utilizar el typecampo para elegir si la entrada es masterthesiso phdthesis. Cuando se define un entrywith @pdfthesis, biblatex'conviértelo' en thesisentrada y define el typecampo paratesis doctoral.

En el ejemplo de la pregunta es necesario redefinir el thesiscontrolador y declarar el titleformato de thesisentrada.

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

ingrese la descripción de la imagen aquí

información relacionada