I've inherited a large, highly customized project for building a handbook for an academic conference. Among the many, many macros is the following:
\DeclareCiteCommand{\citefullauthornames}{%
\boolfalse{citetracker}%
\boolfalse{pagetracker}%
\usebibmacro{prenote}%
}{\indexnames{labelname}%
\printnames[fullauthornames]{labelname}%
}{\multicitedelim}{\usebibmacro{postnote}}
where "fullauthornames" is a name format that does just what you'd expect. This code is then called as \citefullauthornames{bibtex-identifier}, where bibtex-identifier maps to an entry from one of the bibtex files loaded earlier in the project, presumably pulling out the "Author" field and parsing the names.
My question is, is it possible to get biblatex to parse a name string directly, so that I could write something like the following?
\citefullauthornames{Newton, John and Curie, Marie and Einsten, Albert and Feynman, Richard}
I've spent some time in the biblatex documentation but am a bit overwhelmed.
(As to why I'd want to do this, there are occasions where I just want a string of names parsed, printed correctly, and added to the index, and don't need any of the other information present in a bibtex file).
biblatexprovides that code becausebiblatexdoesn't parse the author strings at all. It doesn't read your.bibfile. It writes the.bcffile and reads the.bblfile. The.bblfile is produced by parsing the.bcfand.bibfiles but that parsing is done by an external programme -biberorbibtex.biblatexdoesn't even read the.bibfile but puts e.g.<bcf:datasource type="file" datatype="bibtex">x.bib</bcf:datasource>in the.bcfforbiber. – cfr May 05 '15 at 02:27.csvand something likedatatoolorcsvsimple(though I'm not sure if that'd be the best approach). There's also thenameauthpackage. However, I've never used it because it seemed like serious overkill for my own needs, so I can't say anything useful about it beside the fact that it exists. – jon May 05 '15 at 03:22.texfile. Your easiest way out is probably just a dummy entry for the authors much in the same vein to the link above. – moewe May 05 '15 at 04:48