function biblio_style_chicago_author_options in Bibliography Module 6
Same name and namespace in other branches
- 5 biblio_style_chicago.inc \biblio_style_chicago_author_options()
- 6.2 styles/biblio_style_chicago.inc \biblio_style_chicago_author_options()
- 7 styles/biblio_style_chicago.inc \biblio_style_chicago_author_options()
- 7.2 styles/biblio_style_chicago.inc \biblio_style_chicago_author_options()
1 call to biblio_style_chicago_author_options()
- biblio_style_chicago in ./biblio_style_chicago.inc
- Apply a bibliographic style to the node
File
- ./biblio_style_chicago.inc, line 24
Code
function biblio_style_chicago_author_options() {
$author_options = array(
'BetweenAuthorsDelimStandard' => ', ',
'BetweenAuthorsDelimLastAuthor' => ', and ',
'AuthorsInitialsDelimFirstAuthor' => ', ',
'AuthorsInitialsDelimStandard' => ' ',
'betweenInitialsDelim' => '. ',
'initialsBeforeAuthorFirstAuthor' => FALSE,
'initialsBeforeAuthorStandard' => TRUE,
'shortenGivenNames' => FALSE,
'numberOfAuthorsTriggeringEtAl' => 10,
'includeNumberOfAuthors' => 10,
'customStringAfterFirstAuthors' => ' et al.',
'encodeHTML' => TRUE,
);
return $author_options;
}