To Create a register of persons with biblatex seems to be much more complicate then i expected.
How can i create nice a register of persons semiautomatic with \ref?
Lets assume i have 20 persons that should be mentioned in a document. The grouping and sorting is complicate to implement in LaTeX, but i could do that very easy by hand and LaTeX could manage links and backlinks for me.
At the moment i use a solution like How do I include all authors of cited works in an index of persons?. It works but it can not handle the manual grouping and sorting.
The final document with hyperlinks and backlinks should look like
The screwdriver was turned by \person[Mr.]{Miller}.
Register of Persons =================== Prof. Dr. M. Miller, University of M (p. 4, 12) Dr. A. Foobar, University of M (p. 5) B. Foo, University of Z (p. 1)
nameauthpackage. – Marc van Dongen Nov 14 '12 at 7:26nameauthis a good way to go (though I've only looked at the package, never used it). Another way to do it is with an index: as long as you put all your frequently names in macros and provide a 'general' name macro for one-off uses, it would not be hard to 'group' (i.e., sort) as you please. In the index approach, thexparsepackage will allow you to create pretty clever name+(conditional-)index macros pretty easily. See here for a related question. – jon Nov 14 '12 at 10:40