You are here

function biblio_style_ama_author_options in Bibliography Module 7

Same name and namespace in other branches
  1. 5 biblio_style_ama.inc \biblio_style_ama_author_options()
  2. 6.2 styles/biblio_style_ama.inc \biblio_style_ama_author_options()
  3. 6 biblio_style_ama.inc \biblio_style_ama_author_options()
  4. 7.2 styles/biblio_style_ama.inc \biblio_style_ama_author_options()
1 call to biblio_style_ama_author_options()
biblio_style_ama in styles/biblio_style_ama.inc

File

styles/biblio_style_ama.inc, line 39
AMA style.

Code

function biblio_style_ama_author_options() {
  $author_options = array(
    'BetweenAuthorsDelimStandard' => ', ',
    'BetweenAuthorsDelimLastAuthor' => ', ',
    'AuthorsInitialsDelimFirstAuthor' => ' ',
    'AuthorsInitialsDelimStandard' => ' ',
    'betweenInitialsDelim' => '',
    'initialsBeforeAuthorFirstAuthor' => FALSE,
    'initialsBeforeAuthorStandard' => FALSE,
    'shortenGivenNames' => TRUE,
    'numberOfAuthorsTriggeringEtAl' => 6,
    'includeNumberOfAuthors' => 3,
    'customStringAfterFirstAuthors' => ', et al.',
    'encodeHTML' => TRUE,
  );
  return $author_options;
}