BibTeX, biblatex and biberPrintbibliography produces Unicode U+0099 Error

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
andre_grube
Posts: 2
Joined: Thu Jul 21, 2022 11:41 am

Printbibliography produces Unicode U+0099 Error

Post by andre_grube »

Hello dear Latex Community,

I'm currently a bit in a hurry writing my bachelor thesis and encountered the problem that all of a sudden Texmaker gave me the error

"! LaTeX Error: Unicode character ™ (U+0099)
not set up for use with LaTeX."

Just fyi: U+0099 is the Trademark "^{TM}" symbol.

I narrowed the problem down to the \printbibliography, which produces an error even if there is only one entry in the bib file.

The minimal I created example is the following (please excuse it incase there is one or two lines that are unnecessary still):

Code: Select all

\documentclass[12pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[onehalfspacing]{setspace}

\usepackage[a4paper, left=3cm, right=4cm, top=2cm, bottom=2cm]{geometry}

\usepackage[backend=biber,
	style=alphabetic,
	sorting= nyt,
	natbib = true,
	maxcitenames = 1
	]{biblatex}
\addbibresource{Minbib.bib}

\usepackage[skip=2pt,font=footnotesize]{caption} %smaller captions

\begin{document}

hallo \cite{Easterlin_2021}

\printbibliography

\end{document}

with the bib file containing

@TECHREPORT{Easterlin_2021,
title = {Why Does Happiness Respond Differently to an Increase vs. Decrease in Income?},
author = {Easterlin, Richard},
year = {2021},
}


I can't seem to find any character that could be problematic and I'm extra confused since biblatex without any problems. I would understand if the error came from some entry in the .bib-file, but I had this one from the very start of writing and it always worked.

I also reinstalled exmaker 5.1.3 since I was running 5.1.2 beforehand, but it didnt do anythig.

If anyone has any idea what I can try to fix it, I would appreciate it very much!

Best regards,
Andre

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Kreuz Elf
Posts: 22
Joined: Thu Mar 04, 2021 7:33 pm

Printbibliography produces Unicode U+0099 Error

Post by Kreuz Elf »

hello andre. this is a little bit strange because I can't reproduce your error. Your given minimal working example compiles on my system without any errors. Maybe you have to configure your texmaker to use biber and not bibtex or something else for the compile step. I'm not to familiar with texmaker but in texstudio you have to do that configuration manually since the default is bibtex.
andre_grube
Posts: 2
Joined: Thu Jul 21, 2022 11:41 am

Printbibliography produces Unicode U+0099 Error

Post by andre_grube »

Hi Kreuz,

I couldnt figure out where the problem lies, but I did fix it by taking the foundation of an old paper that still compiles (somehow...) and copying in all the text.

But still no clue how it happened since I basically have the same code now than I had before and it works.

Still thank you very much for taking your time and investigating!

Best regards,
André
fjmalmaraz
Posts: 1
Joined: Wed Aug 03, 2022 1:00 pm

Printbibliography produces Unicode U+0099 Error

Post by fjmalmaraz »

I had a similar problem and after including the option safeinputenc is correctly typeset the document

In the reference document us explained that biber could include utf-8 not accepted by inputenc package
https://ctan.fisiquimicamente.com/macro ... blatex.pdf

I hope it will be useful.
Post Reply