|
NAMEBibTeX::Author - Contains a single author for a BibTeX document. SYNOPSISThis class is a wrapper for a single BibTeX author. It is usually created by a BibTeX::Parser. use BibTeX::Parser::Author;
my $entry = BibTeX::Parser::Author->new($full_name);
my $firstname = $author->first;
my $von = $author->von;
my $last = $author->last;
my $jr = $author->jr;
# or ...
my ($first, $von, $last, $jr) = BibTeX::Author->split($fullname);
FUNCTIONSnewCreate new author object. Expects full name as parameter. firstSet or get first name(s). vonSet or get 'von' part of name. lastSet or get last name(s). jrSet or get 'jr' part of name. splitSplit name into (firstname, von part, last name, jr part). Returns array with four strings, some of them possibly empty. to_stringReturn string representation of the name, as described next. NOTESBibTeX allows three representations of a person's name:
The module always converts the first form to the second or third one to allow simple string comparisons. The algorithm to determine the von part is the following: von part consists of tokens where the first letter at brace level 0 is in lower case. Anything in a "special characters" is on brace level 0. Thus the following tokens are considered von parts: "von", "\NOOP{von}Von", and the following token is not: "{von}" VERSIONversion 1.93 AUTHORGerhard Gossen <gerhard.gossen@googlemail.com> and Boris Veytsman <boris@varphi.com> and Karl Berry <karl@freefriends.org> COPYRIGHT AND LICENSECopyright 2013-2025 Gerhard Gossen, Boris Veytsman, Karl Berry This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|