Page Layout ⇒ Alphabetical Nomenclature
-
- Posts: 4
- Joined: Thu Jan 13, 2011 7:56 pm
Alphabetical Nomenclature
I'm having a bit of a struggle with correctly displaying my list of symbols for a paper I'm trying to publish. I'm using the nomencl package and it appears to be attempting an alphabetical approach... but if I include []'s or {}'s then my order is rearranged. I assume the package is trying to use some sort of ASCII (or other) way of ordering the entries (somebody can correct me here). However, I would prefer an alphabetic ordering, such as for the Greek alphabet. For example, \theta comes before \omega in Greek but not in ASCII. Also, I would prefer A to come before [A]. But the ASCII code, again, reverses this. Does anybody have a possible work around for this.
Thanks,
~~archery~~
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
-
- Posts: 4
- Joined: Thu Jan 13, 2011 7:56 pm
Alphabetical Nomenclature
Code: Select all
\RequirePackage{ifthen}
\renewcommand{\nomgroup}[1]{%
\ifthenelse{\equal{#1}{A}}{\item[\textbf{Roman}]}{%
\ifthenelse{\equal{#1}{G}}{\item[\textbf{Greek}]}}}
...
\nomenclature[gto]{$\tau_0$}{Greek letter}%
\nomenclature[gtc]{$\{\tau\}$}{Greek letter with braces}%
\nomenclature[gtco]{$\{\tau_0\}$}{Greek letter with subscript}%
\nomenclature[aN]{$N$}{Roman letter}%
\nomenclature[aNb]{$[N]$}{Roman letter with brackets}%
\nomenclature[gl]{$\lambda$}{another greek letter}
...
~~archery~~