Lines Matching refs:authors

941         static $key = array('ref-authors', 'ref-author', 'authors', 'author', 'published', 'month', 'year');
965 // authors, published. //[[url|title.]]// edition. [format], publisher, pages, isbn. (accessed)
966 // authors, published. chapter In //[[url|title.]]// edition. [format], publisher, pages, isbn. (accessed)
967 // authors, published. [[url|title.]] //journal//, volume, [format], publisher, pages, issn. (accessed)
968 // authors, published. [[url|title.]] //booktitle//, [format], publisher, pages, issn. (accessed)
972 // authors, published. //$title// edition. [format], publisher, pages, isbn. (accessed)
973 // authors, published. chapter In //$title// edition. [format], publisher, pages, isbn. (accessed)
974 // authors, published. $title //journal//, volume, [format], publisher, pages, issn. (accessed)
975 // authors, published. $title //booktitle//, [format], publisher, pages, issn. (accessed)
977 $authors = $this->renderAuthors($data);
979 // $authors? //$title// edition. [format], publisher, pages, isbn. (accessed)
980 // $authors? chapter In //$title// edition. [format], publisher, pages, isbn. (accessed)
981 // $authors? $title //journal//, volume, [format], publisher, pages, issn. (accessed)
982 // $authors? $title //booktitle//, [format], publisher, pages, issn. (accessed)
984 $publication = $this->renderPublication($data, !empty($authors));
987 // $authors? $title //journal//, volume, $publication?
992 // $authors? $title //booktitle//, $publication?
998 // $authors? $title $subtitle?, $publication?
1002 // $authors? $text, $publication?
1007 // $authors? //$title// edition. $publication?
1008 // $authors? chapter In //$title// edition. $publication?
1013 // $authors? $text $publication?
1015 if (!empty($authors)) {
1016 $text = $authors . ' ' . $text;
1043 $text = $data->get('authors', 'author');
1076 protected function renderPublication($data, $authors) {
1095 if (!$authors && ($published = $this->renderPublished($data))) {
1196 $authors = $data->get('ref-authors', 'ref-author');
1198 if (empty($authors)) {
1199 $authors = $data->get('authors', 'author');
1200 $authorList = explode(',', $authors, 4);
1203 $authors = $authorList[0] . refnotes_localization::getInstance()->getLang('txt_et_al');
1212 $html = $authors . ' ' . $formatOpen . $html . $formatClose;
1241 $html = $formatOpen . $authors . ', ' . $html . $formatClose;
1298 $authors = $data->has('ref-authors', 'ref-author', 'authors', 'author');
1302 return $authors && ($year || $page);