I have a document within I use the package graphicx and all works nice. The problem is that today I have tried to introduce the package subfig in my document and now I have compilation problems:
Code: Select all
caption: You can't use both, the (obsolete) caption2 *and* the (current)
caption package.
Code: Select all
Undefined control sequence \begin{document}
\usepackage{subfig}
. So because I have this error I cannot use \subfloat
but I need this.Can anybody help me to solve this problem ?
Thanks a lot
Code: Select all
\documentclass{classEntreprise}
\usepackage[utf8]{inputenc}
\usepackage{wasysym}
\usepackage{newlfont}
\usepackage{colortbl}
\usepackage{stmaryrd}
\usepackage{multicol}
\usepackage{rotating}
\usepackage{graphicx}
\usepackage[section]{placeins}
\hypersetup{%
pdftitle = {calculs},
pdfsubject = {analytique},
pdfauthor = {moi,
pdfkeywords = {noteTechnique}
}
\foottitle{}
\graphicspath{{figures/}}
\bibliographystyle{monStyle}
\begin{document}
\include{texte/couverture}
\include{texte/pageZ}
\include{texte/merci}
\include{texte/resume}
\frontmatter
\dominitoc
\tableofcontents
\listoffigures
\listoftables
\mainmatter
\sloppy
\include{texte/introduction
\include{texte/chapitre1}
\include{texte/conclusion}
\include{texte/annexeA}
\bibliography{biblio_AAA}
\include{texte/folio}
\end{document}