Re: Problemi di compilazione

#50585
Up
0
Down
::

Avete qualche idea per il problema delle lettere accentate??

L’errore è il seguente: `ʌ79;ʌ79;ʌ79;ʌ79;ʌ79;ʌ79;

ERROR: Package inputenc Error: Unicode char \u8:\303\lst@FillFixed@ not set up for use

— TeX said — with LaTeX.

See the inputenc package documentation for explanation. Type H for immediate help. …

l.963 stranamente, è ancora intatto. È una struttura solidamente costruita
`

Grazie

Il pacchetto listings è incompatibile con utf8.

Ciao
Enrico

Non è il massimo della vita (specie se ci sono molti caratteri Unicode) però si può usare l’escape:
`\documentclass{article}
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage{listings}
\begin{document}
\begin{lstlisting}[language=bash,escapechar=\|]
echo “|è|”
\end{lstlisting}
\end{document}`

Go to top