I am using .bib-files for my citations at my university and want to restrict my bibliography printed in my compiled pdf to exclude certain information.
For example I have this entry in my bibliography:
@book{genmoral1887,
author = "Friedrich Nietzsche",
title = "Zur Genealogie der Moral",
address = "Stuttgart",
publisher = "Reclam",
year = "1988",
note = "[1887]"
}
When the bibliography is printed, all the information is printed out onto the pdf. The problem is that I want to exclude the note-attribute as it contains the year, the book was originally published in by the author. I want to keep this information in my bibliography (to look it up in case I forget) and add other information like the isbn, to have an easier time researching books and articles I already used, but to format it correctly, I want to specify, which parts of the bibliography-entry to exclude when compiling.
Is there a way to do this in my .tex file for example with the style of the bibliography? I can't find anything except different styles concerning how, not which information is displayed.
.bibusing a text editor and then rename the keys I don't want, for example here we could renamenotetoOPTnote, the bibliography style has no idea what to do withOPTnoteand thus ignores it. – daleif Feb 02 '22 at 11:02note = "[1887]I could writeEXCEPTnote = "[1887]into my .bib-file. This is not what I originally wanted, as it is only a workaround and I have to reedit the .bib-file every time I want to change, what information is displayed, but it somehow works. Still not what I was looking for.EDIT: While I was typing, others had the same idea.
– Enemoy Feb 02 '22 at 11:05authoryear-ibidin my preamble:\usepackage[style=authoryear-ibid,backend=biber]{biblatex}– Enemoy Feb 02 '22 at 11:11biblatexhas options to alter or remove certain fields; I guess it is done viabiber. If you add\DeclareSourcemap{\maps[datatype=bibtex]{ ... }}, you can modify certain fields in certain class of documents likearticle,book,inproceedings. See thebiblatexmanual, section 4.5.3 on page 196. – Celdor Feb 02 '22 at 11:17notefrom books, I'd add the following declaration to a preamble:\DeclareSourcemap{ \maps[datatype=bibtex]{ \map{\pertype{book} \step[fieldset=note, null] } }. Again, you would have to change to usebiblatexwithbiber. – Celdor Feb 02 '22 at 11:43