comparison lisp/w3/w3-latex.el @ 110:fe104dbd9147 r20-1b7

Import from CVS: tag r20-1b7
author cvs
date Mon, 13 Aug 2007 09:19:45 +0200
parents 6a378aca36af
children
comparison
equal deleted inserted replaced
109:e183fc049578 110:fe104dbd9147
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")