In following MWE, letters with an accent that are within the personalized comment environment are generating following errors while compiling with pdflatex:
! Package inputenc Error: Unicode char �tr (U+F0) (inputenc) not set up for use with LaTeX.
Question: How to enable unicode characters within a comment-environment?
\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{comment}
\includecomment{mycomment}
\begin{document}
\section*{Normal text}
Tous les êtres humains naissent libres et égaux en dignité et en droits.
\section*{Text within a displayed personnalized comment}
\begin{mycomment}
Tous les êtres humains naissent libres et égaux en dignité et en droits.
\end{mycomment}
\end{document}
