You are here

function biblio_style_cse_author_options in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 styles/biblio_style_cse.inc \biblio_style_cse_author_options()
  2. 6 biblio_style_cse.inc \biblio_style_cse_author_options()
  3. 7.2 styles/biblio_style_cse.inc \biblio_style_cse_author_options()

Return an array of author options.

Return value

array The author options array.

1 call to biblio_style_cse_author_options()
biblio_style_cse in styles/biblio_style_cse.inc
Apply a bibliographic style to the node.

File

styles/biblio_style_cse.inc, line 26
Council of Science Editors (CSE) style.

Code

function biblio_style_cse_author_options() {
  $author_options = array(
    // 4.
    'BetweenAuthorsDelimStandard' => ', ',
    // 5.
    'BetweenAuthorsDelimLastAuthor' => ', ',
    // 7.
    'AuthorsInitialsDelimFirstAuthor' => ' ',
    // 8.
    'AuthorsInitialsDelimStandard' => ' ',
    // 9.
    'betweenInitialsDelim' => '',
    // 10.
    'initialsBeforeAuthorFirstAuthor' => FALSE,
    // 11.
    'initialsBeforeAuthorStandard' => FALSE,
    // 12.
    'shortenGivenNames' => TRUE,
    // 13.
    'numberOfAuthorsTriggeringEtAl' => 10,
    // 14.
    'includeNumberOfAuthors' => 10,
    // 15.
    'customStringAfterFirstAuthors' => ' et al.',
    'encodeHTML' => TRUE,
  );
  return $author_options;
}