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