Mercurial > hg > xemacs-beta
comparison lisp/w3/w3-latex.el @ 32:e04119814345 r19-15b99
Import from CVS: tag r19-15b99
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:52:56 +0200 |
parents | 0293115a14e9 |
children | 131b0175ea99 |
comparison
equal
deleted
inserted
replaced
31:b9328a10c56c | 32:e04119814345 |
---|---|
36 ;;; text-output (standard stuff in w3-draw), LaTeX output (this file), | 36 ;;; text-output (standard stuff in w3-draw), LaTeX output (this file), |
37 ;;; Postscript (to-be-implemented), etc., etc. | 37 ;;; Postscript (to-be-implemented), etc., etc. |
38 ;;; 3) This still doesn't handle tables. | 38 ;;; 3) This still doesn't handle tables. |
39 ;;; | 39 ;;; |
40 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 40 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
41 (require 'w3-cus) | |
41 (require 'w3-print) | 42 (require 'w3-print) |
42 | |
43 (defvar w3-latex-print-links nil | |
44 "*If non-nil, prints the URLs of hypertext links as endnotes at the end of | |
45 the document. If `footnote', prints the URL's as footnotes on a page.") | |
46 | |
47 (defvar w3-latex-use-latex2e nil | |
48 "*If non-nil, configures LaTeX parser to use LaTeX2e syntax. A `nil' | |
49 value indicates that LaTeX 2.0.9 compatibility will be used instead.") | |
50 | |
51 (defvar w3-latex-packages nil | |
52 "*List of LaTeX packages to include. Currently this is only used if | |
53 `w3-latex-use-latex2e' is non-nil.") | |
54 | |
55 (defvar w3-latex-use-maketitle nil | |
56 "*Non-nil makes the LaTeX parser use real LaTeX title pages for | |
57 document titles.") | |
58 | 43 |
59 ;; Internal variables - do not touch! | 44 ;; Internal variables - do not touch! |
60 (defvar w3-latex-current-url nil "What URL we are formatting") | 45 (defvar w3-latex-current-url nil "What URL we are formatting") |
61 (defvar w3-latex-verbatim nil "Whether we are in a {verbatim} block or not") | 46 (defvar w3-latex-verbatim nil "Whether we are in a {verbatim} block or not") |
62 (defvar w3-latex-links-list nil "List of links for endnote usage") | 47 (defvar w3-latex-links-list nil "List of links for endnote usage") |