I'm writing a class note. During the compilation process, I got the following error message:
Code: Select all
LaTeX Warning: Unused global option(s):
[sa4paper].
(./introduction.aux) (/usr/share/texmf-texlive/tex/latex/hyperref/nameref.sty
(/usr/share/texmf-texlive/tex/latex/oberdiek/refcount.sty)) (./introduction.out
) (./introduction.out) (/usr/share/texmf/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
) [1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./introduction.toc)
[2]
Chapitre 1.
(/usr/share/texmf-texlive/tex/latex/amsfonts/umsa.fd)
(/usr/share/texmf-texlive/tex/latex/amsfonts/umsb.fd)
LaTeX Warning: Command \' invalid in math mode on input line 60.
! Package inputenc Error: Unicode char \u8: not set up for use with LaTeX.
See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
l.60 ...�me est composé du préfixe grec $Tkhn$
qui signifie $art, indust...
?
Code: Select all
\documentclass[sa4paper, 11pt]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage{fancyhdr}
\usepackage{amsfonts}
\usepackage{url}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{color}
\usepackage{array}
\usepackage{subfigure}
\usepackage{verbatim}
I tried to remove the .aux, .out, .log, .toc and .pdf files created during the compilation process from my workdirectory, but it did not fix the problem.
What to do please? Thanks.