Lines Matching refs:bibtex
81 * <bibtex bibliography></bibtex> pattern is necessary to print the actual bibliography.
84 // Use trick to access configuration and language stuff from the actual bibtex plugin
86 require_once(DOKU_PLUGIN.'bibtex4dw/syntax/bibtex.php');
202 $bibtex = '';
205 $bibtex .= $this->_loadBibtexFile($file, 'page');
208 $this->_parser->loadString($bibtex);
226 public function addBibtexToSQLite($bibtex,$ID) {
236 $this->_parser->loadString($bibtex);
252 * Prints the reference corresponding to the given bibtex key
266 $rawBibtexEntry = $this->sqlite->res2arr($this->sqlite->query("SELECT entry FROM bibtex WHERE key=?",$bibtex_key));
358 $rawBibtexEntry = $this->sqlite->res2arr($this->sqlite->query("SELECT entry FROM bibtex WHERE key=?",$key));
390 $rawBibtexEntry = $this->sqlite->res2arr($this->sqlite->query("SELECT entry FROM bibtex WHERE key=?",$key));
467 * If the citetype is unknown, the bibtex key is returned
469 * @param string bibtex key of the reference
479 $rawBibtexEntry = $this->sqlite->res2arr($this->sqlite->query("SELECT entry FROM bibtex WHERE key=?",$bibtex_key));
532 * @param string bibtex key of the reference
537 $rawBibtexEntry = $this->sqlite->res2arr($this->sqlite->query("SELECT entry FROM bibtex WHERE key=?",$bibkey));
550 $bibtex = '';
553 $bibtex .= $this->_loadBibtexFile($file, 'page');
555 return $bibtex;