Hello,
How to print the the index into big capital letter for the category?
For example;
A
ample
axe
B
block
buy
and so on?
Currently using default makeindex it'll classify, but no eye-friendly
MakeIndex, Nomenclature, Glossaries and Acronyms ⇒ how to create capital letter for index
how to create capital letter for index
You need to create an .ist file that sets the group headings. For example, create a file called, say, test.ist that contains:
Then when you run makeindex, you need to use the -s option to specify this style file (assuming your document is called test.tex):
regards
Nicola Talbot
Code: Select all
headings_flag 1heading_prefix "\\textbf\{"heading_suffix "\}"
Code: Select all
makeindex -s test.ist test.idx
Nicola Talbot
LaTeX Resources: http://www.dickimaw-books.com/latexresources.html
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/
how to create capital letter for index
thanks a lot, it works.
I tried to tweak (putting huge, so the capital letter will be bold, and slightly bigger than the rests).
something like
Where should I put the huge actually?
Thanks!
I tried to tweak (putting huge, so the capital letter will be bold, and slightly bigger than the rests).
something like
Code: Select all
headings_flag 1heading_prefix "\\textbf\\huge\{"heading_suffix "\}\}"
Thanks!
how to create capital letter for index
After the opening brace:mnajem wrote:I tried to tweak (putting huge, so the capital letter will be bold, and slightly bigger than the rests).
something likeWhere should I put the huge actually?Code: Select all
headings_flag 1heading_prefix "\\textbf\\huge\{"heading_suffix "\}\}"
Code: Select all
heading_prefix "\\textbf\{\\huge "
Regards
Nicola Talbot
LaTeX Resources: http://www.dickimaw-books.com/latexresources.html
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/