Lines Matching refs:text

87 							$text = '\\'.$command.'{'.$scope.'}{'.$argument.'}';
91 $text = '\\'.$command.'{'.$scope.'}['.$argument.']';
98 $text = '\\'.$command.'['.$argument.']{'.$scope.'}';
105 $text = '\\'.$command.'{'.$scope.'}';
109 $text = '\\'.$command;
114 $this->archive->appendContent("$text");
217 function toc_additem($id, $text, $level) { argument
224 function header($text, $level, $pos) { argument
237 $this->appendCommand('chapter', $this->texifyText($text));
238 $this->appendLabel($text);
244 $this->appendCommand('part', $this->texifyText($text));
245 $this->appendLabel($text);
248 $this->appendCommand('chapter', $this->texifyText($text));
249 $this->appendLabel($text);
252 $this->appendCommand('section', $this->texifyText($text));
253 $this->appendLabel($text);
256 $this->appendCommand('subsection', $this->texifyText($text));
257 $this->appendLabel($text);
286 function cdata($text) { argument
287 $this->appendContent($this->texifyText($text));
492 * @param string $text
494 function unformatted($text) { argument
496 $this->appendContent($text);
502 * @param string $text The PHP code
504 function php($text) { argument
506 $this->cdata($text);
513 * @param string $text The PHP code
515 function phpblock($text) { argument
517 $this->appendContent($text);
526 * @param string $text The HTML
528 function html($text) { argument
530 $this->cdata($text);
539 * @param string $text The HTML
541 function htmlblock($text) { argument
543 $this->appendContent($text);
550 * @param string $text
552 function preformatted($text) { argument
553 $this->unformatted($text);
573 * @param string $text text to show
577 function file($text, $lang = null, $file = null) { argument
586 $this->appendContent($text);
593 * @param string $text text to show
597 function code($text, $lang = null, $file = null) { argument
598 $this->file($text, $lang, $file);
703 $this->appendContent($this->texifyText($text));
715 $this->appendContent($this->texifyText($text).' \\url{'.$link.'}');