I use some packages with require utf8. Here is the main file:
\documentclass[a4paper,titlepage]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[backend=biber,style=alphabetic]{biblatex}
\addbibresource{refs.bib}
\begin{document}
\nocite{*}
\printbibliography[heading=bibintoc]
\end{document}
And here is the reference file:
@MISC{Example,
author = {Author with spec\'{\i}al character},
title = {Title}
}
I have no issues with composing special characters like \H{o} (ő) or \k{a} (ą). However, when I try to compose \'{\i} (í), I get the following inputenc error: "not set up for use with LaTeX". It seems like double compositions are not allowed. A solution is to use \'{i} instead, but not removing the dot is ugly. Surely there must be a better way?
Note: I have tried to add \DeclareUnicodeCharacter{00ED}{\'{\i}} to the preamble, but it doesn't help either.
íhas been\'i(or\'{i}) for several years. If you use a LaTeX guide that says that\'{i}leaves the dot, throw it away and get a better one. – egreg Dec 24 '16 at 10:36