I'm trying to have all my references printed on the PDF, the thing is that I only cite 1 of all the entries in the .bib file. And looking at the documentation on biblatex it says I have to use the following command:
\defbibentryset{hkeyi}{hkey1,key2,key3, …i}
But I do not understand the principal <key>, because from what I get all the rest hkey1, and so on, are the entries of the .bib file. Right?
I'm so used to using the \nocite{*} command in the traditional bibliography style and now I'm trying to move to biblatex. Is there any other possibility? Like it seems quite troublesome to dead with this package, do you think is worthy?
My preamble looks like this:
\documentclass{article}
\usepackage{comment}
\usepackage[]{biblatex}
\addbibresource{Ex.bib}
\begin{document}
Some text
\printbibliography
\defbibentryset{*}{*}
\end{document}
And the .bib file is the following
@book{Brezis,
title={Functional analysis, Sobolev spaces and partial differential
equations},
author={Brezis, Haim},
year={2010},
publisher={Springer Science \& Business Media}
}
@inbook{sob1,
publisher = {Wiley-Blackwell},
author={Wiley-Blackwell},
isbn = {9781118032725},
title = {Sobolev Spaces of Functions of One Variable},
booktitle = {Applied Functional Analysis},
chapter = {7},
pages = {145-166},
doi = {10.1002/9781118032725.ch7},
url =
{https://onlinelibrary.wiley.com/doi/abs/10.1002/9781118032725.ch7},
eprint =
{https://onlinelibrary.wiley.com/doi/pdf/10.1002/9781118032725.ch7},
year = {2011},
keywords = {Sobolev spaces, functions, distributions, trace theorems,
Hilbert space}
}
@book{Kub,
title={Essentials of measure theory},
author={Kubrusly, Carlos S},
year={2015},
publisher={Springer}
}
@book{grabinsky,
title={Teor{\'\i}a de la medida/por Guillermo Grabinsky.},
author={Grabinsky, Guillermo},
publisher={La prensas ciencias, UNAM},
year={2011}
}
\defbibentrysetif you don't want to define entry sets. In any case\defbibentryset{*}{*}should not do anything useful.biblatexknows\nociteand so\nocite{*}should do more or less the same thing as in BibTeX. Did you try it? What did not work as expected? – moewe Apr 25 '19 at 03:57\nocite{*}before and after\printbibliographyand it says that the command is undefined. – Lilian Hernández Apr 25 '19 at 04:47\nocite{*}definitely is not undefined. But there is a potential issue in the entrygrabinsky:biblatex/Biber does not like{\'\i}, you should try{\'i}or even betteríinstead. See also https://tex.stackexchange.com/q/251261/35864 – moewe Apr 25 '19 at 04:51author={Wiley-Blackwell},in lookssob1odd. There is also little point in giving a full URL in theeprintfield. Especially if it is the same URL as the one from theurlfield. I suggest you drop theeprintfield insob1. The author inKubshould probably beauthor={Kubrusly, Carlos S.},with a.after the S. – moewe Apr 25 '19 at 04:53{\'\i}'s fault. Useíinstead or one of the other solutions from https://tex.stackexchange.com/q/251261/35864 – moewe Apr 25 '19 at 04:54\i. There is other stuff, but that would have to be looked at on a case-by-case basis. – moewe Apr 25 '19 at 05:09