I use
\usepackage{makeidx}
\makeindex
and then I index a word as \index{word}.
After \printindex in the Index it is appear as
word, 1
and I want it to appear as
word 1
But I don't know how to make it.
I use
\usepackage{makeidx}
\makeindex
and then I index a word as \index{word}.
After \printindex in the Index it is appear as
word, 1
and I want it to appear as
word 1
But I don't know how to make it.
Prepare a file <main>.mst, where <main> stands for the name of your main TeX file, containing
delim_0 " "
delim_1 " "
delim_2 " "
and save it in the same folder containing your main file. For instance, if you have thesis.tex, you should name the new file as thesis.mst.
Then running makeindex will load the file and commas will be removed.
makeindex, AFAIR they refer to the three possible indexing levels – daleif Aug 19 '14 at 15:22.mstfile is used just bymakeindex. – egreg Aug 19 '14 at 15:23"\\hspace{2em}"or"\\qquad"will be accepted (escaping the backslash is sufficient). – egreg Aug 19 '14 at 15:45delim_0 "\\textarabic{،}\\qquad"in an arabic polyglossia environment, and I obtain the good arabic comma after the words of the index. But for the multiple entries, the commas between the numbers of the pages' entries are still the latin commas. What's the command for these commas, between the pages' number ? – Faouzi Bellalouna Jun 12 '20 at 13:25