I need two indices: one of names, one of concepts.
I'm using biblatex with indexing (and TeXshop on a mac, I am a newbie of LaTeX, so sorry for any stupid question).
This works fine for the index of names, but I need to index also concepts.
Until now, I did with \index{concept1}. I get one index with both names and concepts. This was fine until my supervisor wanted two different indices.
Now, with the code below, I get only one index of things I manually indexed, but no more names from biblatex
\documentclass[12pt,a4paper,twoside,openright,titlepage,fleqn,%
headinclude,,footinclude,BCOR5mm,%
numbers=noenddot,cleardoublepage=empty,%
tablecaptionabove]{scrreprt}
\usepackage[style=philosophy-modern,indexing,hyperref,square,natbib,backref]{biblatex}
\usepackage{imakeidx}
\makeindex[name=title,title={List of Titles}]
\renewbibmacro*{citeindex}{%
\ifciteindex
{\indexnames{labelname}}%
{}}
\renewbibmacro*{bibindex}{%
\ifbibindex
{\indexnames{author}%
\indexnames{editor}%
\indexnames{editora}%
\indexnames{editorb}%
\indexnames{editorc}}%
{}}%
%\DeclareIndexFieldFormat{indextitle}{%
%\usebibmacro{index:title}{\index}{#1}}
%\DeclareIndexNameFormat{default}{%
%\usebibmacro{index:name}{\index[nomi]}{#1}{#3}{#5}{#7}}
\usepackage{index}
%\newindex{default}{idx}{ind}{Index}
%\newindex{nomi}{ndx}{nnd}{Index of Names}
\usepackage{makeidx} %\usepackage{imakeidx}
%\DeclareIndexFieldFormat{indextitle}{}{}{}
\usepackage[eulerchapternumbers,subfig,beramono,eulermath,pdfspacing,listings]{classicthesis} %minionpro parts
\usepackage{arsclassica}
\input{arsclassica-settings}
\makeindex%[program=xindy]
\begin{document}
\input{Chapters/hw}
\index{normativity}
\printbibliography
\printindex
%\printindex[title]
\end{document}
I hope to have provided a MWS – I suspect I must run twice something I don't know.





imakeidxandindex. – egreg Jun 27 '13 at 22:49indexpackage. The answer really depends on the indexing package you're using, so I'd meet egreg's request. – Audrey Jun 28 '13 at 03:24imakeidx,indexandmakeidx), but you only need one of them. I provided an answer demonstrating use withimakeidx. – Audrey Jun 28 '13 at 13:18