Ich verwende Biber und Biblatex und möchte alle Abschlussarbeiten vor 2013 ausdrucken.
year = {2010}
Eintrag in der .bib-Datei, funktioniert alles einwandfrei. Wenn ich jedoch
date = {2010-11-25}
statt Jahr wird mein Eintrag ignoriert. Ich respektiere das Datumsformat, richtig? Was ist also falsch? Hier ist ein 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}
Antwort1
Anstelle von Bibers Sourcemapping können Sie das year
Feld biblatex
im Dokument mit vergleichen. (Wir können year
hier unabhängig davon verwenden, ob Sie year
oder verwendet haben date
, da ein date
Feld beim Schreiben in immer in seine Komponenten aufgeteilt wird .bbl
.)
Wir definieren einen Bibcheck
\defbibcheck{before2013}{%
\iffieldint{year}
{\ifnumless{\thefield{year}}{2013}
{}
{\skipentry}}
{\skipentry}}
und verwenden Sie diese Prüfung anstelle des Schlüsselworts
\printbibliography[type=thesis,check=before2013,title=Thesis,resetnumbers=true]
Antwort2
Ihre \maps
Sätze werden nur ausgegeben keyword=before2013
, wenn year
1997 bis 2012 ist, nicht aber, wenn date
1997-01-01 bis 2012-12-31 ist. Der Index wird nur ausgegeben, wenn keyword=before2013
. Der Eintrag würde also nicht ausgegeben, wenn date
statt year
verwendet wird.
Sie können eine ähnliche Karte hinzufügen date
wie für 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}
Eine andere Lösung wäre, eine Prüfung durchzuführen, da Prüfungen erst durchgeführt werden, wenn das Datum bereits aufgeteilt wurde:
\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}
Das Ergebnis ist das gleiche.