48

I get this error message, during compiling my .tex-document.

line 234 - ! Package inputenc Error: Unicode char ́ (U+301)(inputenc) not set up for use with LaTeX.See the inputenc package documentation for explanation.Type H <return> for immediate help.... \cleardoublepage

I am writing my thesis right now and I am very confused about this error message, since it seems to be connected to a special character, which I do not use in my manuscript. The solution up to now was the reloading of an older version of my manuscript...after some hours of work and after several times of successful compiling this error suddenly occurs again. I don't get it why, since I just write some text, add some figures and nothing more...

any suggestions, how I can solve that issue? I have no idea, what kind of MWE I should post here :( where does this comment "line234" refer to. Line 234 is normal text in my manuscript...

gernot
  • 49,614
  • Check out the comments on this question here. There might be something in there that could solve your issue. In particular using \'e for accented characters. – Flexo013 Jul 24 '18 at 13:31
  • I kind of solved the problem for now by using

    \DeclareUnicodeCharacter{0301}{'{e}}

    before \begin{document}. Well, I am happy about it, but I am still not understand, what the actual problem was. Why do I have to declare some unicode and some not???

    – Marius Knapp Jul 24 '18 at 13:48
  • @MariusKnapp That's wrong: U+0301 is a combining character; if you have the combination U+0065 U+0301, your definition would produce . – egreg Jul 24 '18 at 15:02
  • 11
    Experienced this problem with \'{\i} in a .bib file compiled with biblatex. Problem solved by using \'{i} instead, which is strange because the backslash in front of the i used to be recommended. Anyhow the i prints correctly that way. – PatrickT Mar 31 '21 at 12:45
  • We should really pick one of these questions to be the canonical question we redirect dupes to. – Davislor Jan 28 '22 at 00:52
  • I had problem with \'{i} too. Changing in the bib file was not enough for me. I had to go in the bbl file and change there also! The bbl file had composed characters. I changed only ı́ – Cyriac Antony Jun 14 '22 at 13:32

7 Answers7

88

I do this:

\DeclareUnicodeCharacter{0301}{*************************************}

and look into the pdf which char produces this and delete/correct it.

Felix
  • 981
22

If you copy/paste some source, it may happen that é had been coded as

U+0065 U+0301

which in Unicode aware environments is rendered as expected. Unfortunately pdflatex is not Unicode aware and cannot deal with combining characters, which are placed after the character they refer to.

The only method that gives correct results is to change the combination into the non composed character.

Doing \DeclareUnicodeCharacter{0301}{\'{e}} is wrong. Here's an example:

\documentclass{article}

\DeclareUnicodeCharacter{0301}{\'{e}}

\begin{document}

é % non composed character U+00E9
é % composed character U+0065 U+0301
ú % composed character U+0075 U+0301

\end{document}

enter image description here

You're removing the error message, but the output is completely off.

Note Copying from the above will not show the precomposed characters, because either my OS or this site does normalization.

egreg
  • 1,121,712
7

I had a very similar problem:

Error: Unicode char ́ (U+0301)(inputenc) not set up for use with LaTeX...; 

It seems the problem was not in my main text but in my .bib file instead. I had a citation in the line in which my compilation said I had the mistake, and after checking this reference inside the .bib file, I found that it had several accented vowels in curly brackets. I changed the vowel in curly brackets by the corresponding "normal accented" vowel (I mean, with the vowel accented using my keyboard) and the problem went away.

naphaneal
  • 2,614
eric
  • 81
  • Why was this downvoted? I had the exact same issue and your approach worked for me. Thank you! – Hagbard Oct 29 '20 at 15:00
  • Same issue here; your fix worked. Thank you! – LunkRat Jan 13 '22 at 21:50
  • Also you might need to delete all auxiliary/temporary files when dealing with error in .bib files. I had the same error, but it persisted even after deleting all non-ascii characters from .bib file. The accented vowel was still in present in .aux file, which was not recreated for some reason. I recommend deleting every file except .tex and .bib files, than recompiling. (mentioning this for anyone googling the same issue like me) – herdek550 Mar 23 '24 at 18:56
4

As others have already said, the issue is the accented characters, likely in the .bib file. Replace the culprit characters there with the corresponding latex-appropriate e.g. \'{i}.

Dim
  • 43
  • 3
1

Either compile in LuaLaTeX/XeLaTeX, or normalize your source file to NFC form. PDFTeX chokes on combining characters, but your accented character most likely has a canonical precomposed form that inputenc can handle.

You might be able to do this with iconv -f utf8-mac -t utf8, or here is a little program I wrote that does it.

Davislor
  • 44,045
0

As a rough workaround, you can use this:

\documentclass[12pt]{article}

\DeclareUnicodeCharacter{0301}{\hspace{-1ex}'{ }}

\begin{document}

chaŕ cha'r

\Huge

chaŕ cha'r

charŔ cha'R

\end{document}

However, the workaround is indeed rather rough (look at the left R):

enter image description here

NickKolok
  • 657
-2

Compiling with XeTeX works for me, maybe because it works better with unicode.

Here a found some clarifications.

  • Welcome to TeX.SE! Please do not use a link to an external page, describe in your own words what you think is the solution here. From the accepted answer changing the engine seems not to be a solution here for the OP ... – Mensch Aug 25 '19 at 22:22
  • Ok, thanks for your help. I edited my answer following your advice. – Fredy Gabriel Ramírez V. Aug 26 '19 at 01:31