Page Layout ⇒ Compatibility issue between minitoc & nomencl packages?
Compatibility issue between minitoc & nomencl packages?
I am actually experiencing some issue when compiling my tex file.
If I comment the command \printnomenclature, I can have a minitoc edited at each beginning of chapter. Uncommented it, then I still have the nomenclature appearing in the final file, but I do not have anymore my minitocs.
Below are some lines of commands in my main file:
"
\documentclass[11pt,twoside]{book}
\input{pack_def}
\begin{document}
\dominitoc
\tableofcontents
\input{mynotations}
\printnomenclature
\input{chapter1}
% and so on...
"
where the file "mynotations" are the listed symbols I use throughout the text, and the pack_def is, for the-I guess-relevant part, as follows:
"
\usepackage[french]{minitoc}
\setcounter{minitocdepth}{2}
\let\LaTeXminitoc\minitoc
\renewcommand{\minitoc}{\LaTeXminitoc \vspace{1.5em}}
\usepackage[intoc]{nomencl}
\renewcommand{\nomname}{Notations}
\makenomenclature
"
However, I did not see any incompatibility issue in the manuals of the corresponding packages.
I'd be glad if you would have any advice.
Cheers,
soTo
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Compatibility issue between minitoc & nomencl packages?
If I put \printnomenclature after all the \input{Chapter}'s, then everything works fine, meaning I have both the minitocs at the beginning of each chapter and the nomenclature appearing.
However, I'd like to have the nomenclature appearing before my chapters, and so the problem still remains.
Cheers
Re: Compatibility issue between minitoc & nomencl packages?
++
soTo