The errors aren't creating any problem in my desired output, but what does it mean? How can I fix it?
I will share my tex file if needed.
The errors aren't creating any problem in my desired output, but what does it mean? How can I fix it?
I will share my tex file if needed.
urlpackage (loaded bybiblatex) which cannot split urls at any character. Try loadingxurl. – Bernard Mar 30 '20 at 14:531. Is
\usepackage{url}now unnecessary as I am using\usepackage{xurl}?2. What is the need for
\usepackage[nottoc]{tocbibind}here? [The output seems unaffected if I remove that package.] – raf Mar 30 '20 at 15:34tocbibindguarantees that list of tables, list of figures, bibliography, index and even the toc (which is ridiculous, in my opinion – no one reads the toc to find where it is) are in the toc. The[notoc]option removes the toc from this list. If in your case, it doesn't change whatever, just delete it.tocbibindis not compatible withbiblatex, though. It won't do anything bad withbiblatex, but it will not have any effect on whether or not abiblatex-produced bibliography goes to the ToC. That is controlled with theheadingoption of\printbibliography. – moewe Mar 30 '20 at 15:48