In my index, I would like to group certain items under a group entry name. Sinmce I already use the three levels available (item, subitem, subsubitem), I tried to create an entry without page number. In the example below, "Weird Languages" should not be followed by a page number, because it is intended as the class title of what follows.
\documentclass[12pt,twoside,a4paper,openright]{book}
\usepackage{xunicode}
\usepackage{imakeidx}
\makeindex[name=texts,title=Texts,columns=1,options=-s mystyle -c -l]
\begin{document}
\index[texts]{Script@\string\textbf{Weird Languages}}
3.28\index[texts]{Script!Aramaic!3.28}
5.1\index[texts]{Script!Greek!5.1}
8.1\index[texts]{Script!Demotic!8.1}
\printindex[texts]
\end{document}
The outcome so far is:

How do I suppress the page number of an individual entry, here "Weird Languages" , or, how do I add an item without page number while keeping page numbers for other items as normal?
.indfile manually (after creating the index). It looks like one big long list environment, so it is easy to figure out and do. However, if you are going to be doing a lot of this sort of thing, it would be better to do it programmatically. – jon Apr 12 '13 at 16:39makeindexwould do that. So, presumably it's becauseimakeidxis being run without thenoautomaticoption. Also not allowing-shell-escapeshould solve that problem, I believe. But no matter if you have many 'no page number' entries that you want to add. – jon Apr 12 '13 at 19:37