Estoy usando biber y biblatex y quiero imprimir todas las tesis antes de 2013. Cuando uso
year = {2010}
entrada en el archivo .bib, todo funciona bien. Sin embargo, si uso
date = {2010-11-25}
en lugar de año, se ignora mi entrada. Estoy respetando el formato de fecha, ¿verdad? Entonces, ¿qué pasa? Aquí hay un MWE.
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@THESIS{a,
AUTHOR = {Myself},
TITLE = {Me, myself and I},
Institution = {My University},
type = {Ph.D. thesis},
year = {2010}
} % date = {2010-11-25}
\end{filecontents*}
\usepackage[backend=biber,defernumbers=true,sorting=ydnt]{biblatex}
\addbibresource{\jobname.bib}
\DeclareSourcemap{
\maps[datatype=bibtex]{
\map[overwrite=true]{
\step[fieldsource=year, match=\regexp{199([7-9])|200([0-9])|201([0-2])},final]
\step[fieldset=keywords, fieldvalue={,}, append]
\step[fieldset=keywords, fieldvalue={before2013}, append]
}}}
\begin{document}
Hello world.
\nocite{*}
\printbibliography[type=thesis,keyword=before2013,title=Thesis,resetnumbers=true]
\end{document}
Respuesta1
En lugar del mapeo fuente de Biber, puede comparar el year
campo con biblatex
el del documento. (Podemos usarlo year
aquí independientemente de si usó year
o date
ya que un date
campo siempre se divide en sus componentes cuando se escribe en el archivo .bbl
.)
Definimos un bibcheck
\defbibcheck{before2013}{%
\iffieldint{year}
{\ifnumless{\thefield{year}}{2013}
{}
{\skipentry}}
{\skipentry}}
y use esa marca en lugar de la palabra clave
\printbibliography[type=thesis,check=before2013,title=Thesis,resetnumbers=true]
Respuesta2
Su \maps
único conjunto keyword=before2013
es year
desde 1997 hasta 2012, pero no si date
es desde 1997-01-01 hasta 2012-12-31. El índice sólo se imprime si keyword=before2013
. Por lo tanto, la entrada no se imprimirá si se utiliza date
en lugar de .year
Puede agregar un mapa similar al date
que tiene para year
:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@THESIS{a,
AUTHOR = {Myself},
TITLE = {Me, myself and I},
Institution = {My University},
type = {Ph.D. thesis},
year = {2010}
}
@THESIS{b,
AUTHOR = {Another},
TITLE = {Another, one and nobody},
Institution = {My University},
type = {Ph.D. thesis},
date = {2010-11-25}
}
@THESIS{c,
AUTHOR= {Never},
TITLE = {I'm to late},
Institution = {My University},
type = {Ph.D. thesis},
date = {2017-01-01}
}
\end{filecontents*}
\usepackage[backend=biber,defernumbers=true,sorting=ydnt]{biblatex}
\addbibresource{\jobname.bib}
\DeclareSourcemap{
\maps[datatype=bibtex]{
\map[overwrite=true]{
\step[fieldsource=year, match=\regexp{199([7-9])|200([0-9])|201([0-2])},final]
\step[fieldset=keywords, fieldvalue={,}, append]
\step[fieldset=keywords, fieldvalue={before2013}, append]
}
\map[overwrite=true]{
\step[fieldsource=date, match=\regexp{199([7-9])|200([0-9])|201([0-2])},final]
\step[fieldset=keywords, fieldvalue={,}, append]
\step[fieldset=keywords, fieldvalue={before2013}, append]
}
}
}
\begin{document}
Hello world.
\nocite{*}
\printbibliography[type=thesis,keyword=before2013,title=Thesis,resetnumbers=true]
\end{document}
Otra solución sería utilizar un cheque, porque los controles se realizan cuando la fecha ya ha sido dividida:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@THESIS{a,
AUTHOR = {Myself},
TITLE = {Me, myself and I},
Institution = {My University},
type = {Ph.D. thesis},
year = {2010}
}
@THESIS{b,
AUTHOR = {Another},
TITLE = {Another, one and nobody},
Institution = {My University},
type = {Ph.D. thesis},
date = {2010-11-25}
}
@THESIS{c,
AUTHOR= {Never},
TITLE = {I'm to late},
Institution = {My University},
type = {Ph.D. thesis},
date = {2017-01-01}
}
\end{filecontents*}
\usepackage[backend=biber,defernumbers=true,sorting=ydnt]{biblatex}
\addbibresource{\jobname.bib}
\defbibcheck{before2013}{%
\iffieldint{year}% If an interger field year exists
{
\ifnumless{\thefield{year}}{2013}% and the field value is less than 2013
{}% do nothing
{\skipentry}% otherwise skip the entry
}
{\skipentry}% skip the entrie also if there isn't an integer field year
}
\begin{document}
Hello world.
\nocite{*}
\printbibliography[type=thesis,check=before2013,title=Thesis,resetnumbers=true]
\end{document}
El resultado es el mismo.