]> (define %graphic-default-extension% "eps") ;; Inserted in order to be able to use Computer Modern fonts in PS documents. ;; The font names _must_ be written exactly as follows ("Computer-Modern", ;; not "Computer Modern") for pdfjadetex to recognize them and use the T1 ;; fonts istead of the PK (Type 3) ones (which will look ugly on screen)! ;; ;; Gnuishly correct fonts... ;; (define %body-font-family% "Computer-Modern") (define %mono-font-family% "Computer-Modern-Typewriter") (define %title-font-family% "Computer-Modern-Sans") (define %admon-font-family% "Computer-Modern-Sans") (define %guilabel-font-family% "Computer-Modern-Sans") ;; Mathematics ;; ;; NOTE: THE MATHEMATICS PARTS ARE IDENTICAL FOR PDF AND PS! ;; ;; Code taken and adapted from the TeXMath.dsl file ;; of the DBTeXMath package of Allin Cottrell (define tex-backend ;; REFENTRY tex-backend ;; PURP Are we using the TeX backend? ;; DESC ;; This parameter exists so that '-V tex-backend' can be used on the ;; command line to explicitly select the TeX backend. ;; /DESC ;; AUTHOR N/A ;; /REFENTRY #t) (element (equation math) (empty-sosofo)) (element (equation graphic) (empty-sosofo)) (element (equation alt) (make display-group (literal "BEGINTEXLITERAL") (literal (data (current-node))) (literal "ENDTEXLITERAL"))) (element (informalequation math) (empty-sosofo)) (element (informalequation graphic) (empty-sosofo)) (element (informalequation alt) (make display-group (literal "BEGINTEXLITERAL") (literal (data (current-node))) (literal "ENDTEXLITERAL"))) (element (inlineequation math) (empty-sosofo)) (element (inlineequation graphic) (empty-sosofo)) (element (inlineequation alt) (make sequence (literal "BEGINTEXLITERAL") (literal (data (current-node))) (literal "ENDTEXLITERAL"))) ;; End of Mathematics part ;; ------------------------- End of inserted part -----------------------------