0

I'm using xindy to make my Index page. Is it possible to style it in such way that each first word in letter group will have first letter capitalized? I would like to have something like this:

Tabela, 120 telefon, 82 tkanina, 65 Wanna, 43 wek, 56 ... 

1 Answer 1

1

check this code

\documentclass{article} \usepackage[xindy]{imakeidx} \makeindex[columns=1] \def\myFirstUpper#1{\expandafter\MakeUppercase #1} % \long\def\lettergroup#1\item{\item\myFirstUpper} \let\lettergroupDefault\lettergroup \begin{document} foo\index{tabela}. foo\index{telefon}. foo\index{tkanina}, asdf\index{wanna} asd\index{wek} \printindex \end{document} 

It produces: enter image description here

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.