1 ;;; muse-latex.el --- publish entries in LaTex or PDF format
3 ;; Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
5 ;; This file is part of Emacs Muse. It is not part of GNU Emacs.
7 ;; Emacs Muse is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published
9 ;; by the Free Software Foundation; either version 2, or (at your
10 ;; option) any later version.
12 ;; Emacs Muse is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 ;; General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with Emacs Muse; see the file COPYING. If not, write to the
19 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 ;; Boston, MA 02110-1301, USA.
26 ;; Li Daobing (lidaobing AT gmail DOT com) provided CJK support.
28 ;; Trent Buck (trentbuck AT gmail DOT com) gave valuable advice for
29 ;; how to treat LaTeX specials and the like.
33 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
35 ;; Muse LaTeX Publishing
37 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
39 (require 'muse-publish
)
41 (defgroup muse-latex nil
42 "Rules for marking up a Muse file as a LaTeX article."
45 (defcustom muse-latex-extension
".tex"
46 "Default file extension for publishing LaTeX files."
50 (defcustom muse-latex-pdf-extension
".pdf"
51 "Default file extension for publishing LaTeX files to PDF."
55 (defcustom muse-latex-header
56 "\\documentclass{article}
58 \\usepackage[english]{babel}
59 \\usepackage[latin1]{inputenc}
60 \\usepackage[T1]{fontenc}
61 \\usepackage{hyperref}
62 \\usepackage[pdftex]{graphicx}
64 \\newcommand{\\comment}[1]{}
68 \\title{<lisp>(muse-publishing-directive \"title\")</lisp>}
69 \\author{<lisp>(muse-publishing-directive \"author\")</lisp>}
70 \\date{<lisp>(muse-publishing-directive \"date\")</lisp>}
74 <lisp>(and muse-publish-generate-contents
75 \"\\\\tableofcontents\n\\\\newpage\")</lisp>\n\n"
76 "Header used for publishing LaTeX files. This may be text or a filename."
80 (defcustom muse-latex-footer
"\n\\end{document}\n"
81 "Footer used for publishing LaTeX files. This may be text or a filename."
85 (defcustom muse-latexcjk-header
86 "\\documentclass{article}
89 \\usepackage{indentfirst}
90 \\usepackage[CJKbookmarks=true]{hyperref}
91 \\usepackage[pdftex]{graphicx}
94 \\begin{CJK*}<lisp>(muse-latexcjk-encoding)</lisp>
96 \\title{<lisp>(muse-publishing-directive \"title\")</lisp>}
97 \\author{<lisp>(muse-publishing-directive \"author\")</lisp>}
98 \\date{<lisp>(muse-publishing-directive \"date\")</lisp>}
102 <lisp>(and muse-publish-generate-contents
103 \"\\\\tableofcontents\n\\\\newpage\")</lisp>\n\n"
104 "Header used for publishing LaTeX files (CJK). This may be text or a
109 (defcustom muse-latexcjk-footer
112 "Footer used for publishing LaTeX files (CJK). This may be text or a
117 (defcustom muse-latex-markup-regexps
119 (10000 "\\([0-9]+\\)-\\([0-9]+\\)" 0 "\\1--\\2")
121 ;; be careful of closing quote pairs
122 (10100 "\"'" 0 "\"\\\\-'"))
123 "List of markup regexps for identifying regions in a Muse page.
124 For more on the structure of this list, see `muse-publish-markup-regexps'."
125 :type
'(repeat (choice
126 (list :tag
"Markup rule"
128 (choice regexp symbol
)
130 (choice string function symbol
))
134 (defcustom muse-latex-markup-functions
135 '((table . muse-latex-markup-table
))
136 "An alist of style types to custom functions for that kind of text.
137 For more on the structure of this list, see
138 `muse-publish-markup-functions'."
139 :type
'(alist :key-type symbol
:value-type function
)
142 (defcustom muse-latex-markup-strings
143 '((image-with-desc .
"\\includegraphics[width=\\textwidth]{%s}")
144 (image-link .
"\\includegraphics[width=\\textwidth]{%s}")
145 (url-with-image .
"%% %s\n\\includegraphics[width=\\textwidth]{%s}")
146 (anchor-ref .
"\\ref{%s}")
148 (url-and-desc .
"\\href{%s}{%s}\\footnote{%1%}")
149 (link .
"\\href{%s}{%s}\\footnote{%1%}")
150 (link-and-anchor .
"\\href{%1%}{%3%}\\footnote{%1%}")
151 (email-addr .
"\\verb|%s|")
152 (anchor .
"\\label{%s}")
154 (comment-begin .
"\\comment{")
157 (no-break-space .
"~")
158 (enddots .
"\\ldots{}")
162 (chapter .
"\\chapter{")
164 (section .
"\\section{")
166 (subsection .
"\\subsection{")
167 (subsection-end .
"}")
168 (subsubsection .
"\\subsubsection{")
169 (subsubsection-end .
"}")
170 (section-other .
"\\paragraph{")
171 (section-other-end .
"}")
172 (footnote .
"\\footnote{")
174 (footnotetext .
"\\footnotetext[%d]{")
175 (begin-underline .
"\\underline{")
176 (end-underline .
"}")
177 (begin-literal .
"\\texttt{")
179 (begin-emph .
"\\emph{")
181 (begin-more-emph .
"\\textbf{")
182 (end-more-emph .
"}")
183 (begin-most-emph .
"\\textbf{\\emph{")
184 (end-most-emph .
"}}")
185 (begin-verse .
"\\begin{verse}\n")
186 (end-verse-line .
" \\\\")
187 (verse-space .
"~~~~")
188 (end-verse .
"\n\\end{verse}")
189 (begin-example .
"\\begin{quote}\n\\begin{verbatim}")
190 (end-example .
"\\end{verbatim}\n\\end{quote}")
191 (begin-center .
"\\begin{center}\n")
192 (end-center .
"\n\\end{center}")
193 (begin-quote .
"\\begin{quote}\n")
194 (end-quote .
"\n\\end{quote}")
195 (begin-uli .
"\\begin{itemize}\n")
196 (end-uli .
"\n\\end{itemize}")
197 (begin-uli-item .
"\\item ")
198 (begin-oli .
"\\begin{enumerate}\n")
199 (end-oli .
"\n\\end{enumerate}")
200 (begin-oli-item .
"\\item ")
201 (begin-dl .
"\\begin{description}\n")
202 (end-dl .
"\n\\end{description}")
203 (begin-ddt .
"\\item[")
205 "Strings used for marking up text.
206 These cover the most basic kinds of markup, the handling of which
207 differs little between the various styles."
208 :type
'(alist :key-type symbol
:value-type string
)
211 (defcustom muse-latexcjk-encoding-map
212 '((utf-8 .
"{UTF8}{song}")
213 (japanese-iso-8bit .
"[dnp]{JIS}{min}")
214 (chinese-big5 .
"{Bg5}{bsmi}")
215 (mule-utf-8 .
"{UTF8}{song}")
216 (chinese-iso-8bit .
"{GB}{song}")
217 (chinese-gbk .
"{GBK}{song}"))
218 "An alist mapping emacs coding systems to appropriate CJK codings.
219 Use the base name of the coding system (ie, without the -unix)."
220 :type
'(alist :key-type coding-system
:value-type string
)
223 (defcustom muse-latexcjk-encoding-default
"{GB}{song}"
224 "The default Emacs buffer encoding to use in published files.
225 This will be used if no special characters are found."
229 (defun muse-latexcjk-encoding ()
230 (when (boundp 'buffer-file-coding-system
)
231 (muse-latexcjk-transform-content-type buffer-file-coding-system
)))
233 (defun muse-latexcjk-transform-content-type (content-type)
234 "Using `muse-cjklatex-encoding-map', try and resolve an emacs coding
235 system to an associated CJK coding system."
236 (let ((match (and (fboundp 'coding-system-base
)
237 (assoc (coding-system-base content-type
)
238 muse-latexcjk-encoding-map
))))
241 muse-latexcjk-encoding-default
)))
243 (defcustom muse-latex-markup-specials-document
244 '((?
\\ .
"\\textbackslash{}")
245 (?\_ .
"\\textunderscore{}")
246 (?\
< .
"\\textless{}")
247 (?\
> .
"\\textgreater{}")
257 "A table of characters which must be represented specially.
258 These are applied to the entire document, sans already-escaped
260 :type
'(alist :key-type character
:value-type string
)
263 (defcustom muse-latex-markup-specials-example
265 "A table of characters which must be represented specially.
266 These are applied to <example>regions</example>."
267 :type
'(alist :key-type character
:value-type string
)
270 (defcustom muse-latex-markup-specials-literal
272 (?_ .
"\\textunderscore{}")
273 (?\
< .
"\\textless{}")
274 (?\
> .
"\\textgreater{}")
283 "A table of characters which must be represented specially.
284 This applies to =monospaced text= and <code>regions</code>."
285 :type
'(alist :key-type character
:value-type string
)
288 (defcustom muse-latex-markup-specials-url
299 "A table of characters which must be represented specially.
300 These are applied to URLs."
301 :type
'(alist :key-type character
:value-type string
)
304 (defun muse-latex-decide-specials (context)
305 "Determine the specials to escape, depending on CONTEXT."
306 (cond ((memq context
'(underline emphasis document url-desc verbatim
))
307 muse-latex-markup-specials-document
)
308 ((memq context
'(email url
))
309 muse-latex-markup-specials-url
)
310 ((eq context
'literal
)
311 muse-latex-markup-specials-literal
)
312 ((eq context
'example
)
313 muse-latex-markup-specials-example
)
314 (t (error "Invalid context '%s' in muse-latex" context
))))
316 (defun muse-latex-markup-table ()
317 (let* ((table-info (muse-publish-table-fields (match-beginning 0)
319 (row-len (car table-info
))
320 (field-list (cdr table-info
)))
322 (muse-insert-markup "\\begin{tabular}{" (make-string row-len ?l
) "}\n")
323 (dolist (fields field-list
)
324 (let ((type (car fields
)))
325 (setq fields
(cdr fields
))
327 (muse-insert-markup "\\hline\n"))
328 (insert (car fields
))
329 (setq fields
(cdr fields
))
330 (dolist (field fields
)
331 (muse-insert-markup " & ")
333 (muse-insert-markup " \\\\\n")
335 (muse-insert-markup "\\hline\n"))))
336 (muse-insert-markup "\\end{tabular}"))))
338 (defun muse-latex-fixup-dquotes ()
339 "Fixup double quotes."
341 (while (search-forward "\"" nil t
)
342 (unless (get-text-property (match-beginning 0) 'read-only
)
344 (eq (char-before) ?
\n))
353 (defun muse-latex-finalize-buffer ()
354 (goto-char (point-min))
355 (muse-latex-fixup-dquotes))
357 (defun muse-latex-pdf-browse-file (file)
358 (shell-command (concat "open " file
)))
360 (defun muse-latex-pdf-generate (file output-path final-target
)
361 (muse-publish-transform-output
362 file output-path final-target
"PDF"
364 (lambda (file output-path
)
365 (let ((command (format "cd \"%s\"; pdflatex \"%s\""
366 (file-name-directory output-path
) file
))
369 ;; XEmacs can sometimes return a non-number result. We'll err
370 ;; on the side of caution by continuing to attempt to generate
371 ;; the PDF if this happens and treat the final result as
373 (while (and (< times
2)
374 (or (not (numberp result
))
376 ;; table of contents takes 2 passes
378 (muse-replace-regexp-in-string
379 "\\.tex\\'" ".toc" file t t
))))
380 (setq result
(shell-command command
)
382 (if (or (not (numberp result
))
386 ".aux" ".toc" ".out" ".log"))
388 (unless (assoc "latex" muse-publishing-styles
)
389 (muse-define-style "latex"
390 :suffix
'muse-latex-extension
391 :regexps
'muse-latex-markup-regexps
392 :functions
'muse-latex-markup-functions
393 :strings
'muse-latex-markup-strings
394 :specials
'muse-latex-decide-specials
395 :after
'muse-latex-finalize-buffer
396 :header
'muse-latex-header
397 :footer
'muse-latex-footer
400 (muse-derive-style "pdf" "latex"
401 :final
'muse-latex-pdf-generate
402 :browser
'muse-latex-pdf-browse-file
403 :link-suffix
'muse-latex-pdf-extension
404 :osuffix
'muse-latex-pdf-extension
)
406 (muse-derive-style "latexcjk" "latex"
407 :header
'muse-latexcjk-header
408 :footer
'muse-latexcjk-footer
)
410 (muse-derive-style "pdfcjk" "latexcjk"
411 :final
'muse-latex-pdf-generate
412 :browser
'muse-latex-pdf-browse-file
413 :link-suffix
'muse-latex-pdf-extension
414 :osuffix
'muse-latex-pdf-extension
))
416 (provide 'muse-latex
)
418 ;;; muse-latex.el ends here