function biblio_style_vancouver_author_options in Bibliography Module 6
Same name and namespace in other branches
- 5 biblio_style_vancouver.inc \biblio_style_vancouver_author_options()
- 6.2 styles/biblio_style_vancouver.inc \biblio_style_vancouver_author_options()
- 7 styles/biblio_style_vancouver.inc \biblio_style_vancouver_author_options()
- 7.2 styles/biblio_style_vancouver.inc \biblio_style_vancouver_author_options()
1 call to biblio_style_vancouver_author_options()
File
- ./
biblio_style_vancouver.inc, line 39
Code
function biblio_style_vancouver_author_options() {
$author_options = array(
'BetweenAuthorsDelimStandard' => ', ',
'BetweenAuthorsDelimLastAuthor' => ', ',
'AuthorsInitialsDelimFirstAuthor' => ' ',
'AuthorsInitialsDelimStandard' => ' ',
'betweenInitialsDelim' => '',
'initialsBeforeAuthorFirstAuthor' => FALSE,
'initialsBeforeAuthorStandard' => FALSE,
'numberOfInitialsToKeep' => 2,
'shortenGivenNames' => TRUE,
'numberOfAuthorsTriggeringEtAl' => 6,
'includeNumberOfAuthors' => 6,
'customStringAfterFirstAuthors' => ', et al.',
'encodeHTML' => TRUE,
);
return $author_options;
}