I did not notice that before but I have similar problem with nomenclature (is this equal to list of abbreviations?)
Please see attached file and page 15.: there is header "CHAPTER 2. SECOND CHAPTER" but should be "Nomenclature". How can I change it?
I am making my nomenclature by adding to my latex code:
Code: Select all
\usepackage{nomencl} %list of abbreviations
\makenomenclature
before
each entry is:
Code: Select all
\nomenclature{XYZ}{definition of XYZ}
and at the end there is
I do not know if this is the simplest way to make this list, but works good.
quick guide of compilation proces:
1. latex compilation
2. make nomenclature list
3. latex compilation
Step 2. makeindex is script called out from my latex editor directly, this script is:
Code: Select all
@rem You can put here any commands you want - this batch file can be executed from LEd's toolbar
@rem There are 3 parameters passed to this batch:
@rem %1 - <MAINFILEDIR>
@rem %2 - <MAINFILENAME>
@rem %3 - <MAINFILEDISK>
@rem You can also define in tex_cmd.gd file some additional parameters to be passed to this batch file.
@echo off
@poniżej skrypt MakeIndex do wykazu skrótów
%3
cd %1
makeindex %2.nlo -s nomencl.ist -o %2.nls
I hope everything is clear.
Summarizing my problems:
1. wrong header in Nomenclature section
2. how can I add Nomenclature to my List of Contents?