[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[O] Inline tasks and latex export
From: |
Christopher Witte |
Subject: |
[O] Inline tasks and latex export |
Date: |
Wed, 07 Sep 2011 17:55:21 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:6.0.1) Gecko/20110830 Thunderbird/6.0.1 |
Hi all,
I've been trying to get inline tasks to work with the todonotes
package. I found some information on getting the \todo{} command to
work but I couldn't find any info on getting the \missingfigure{}
command to work. Here is the solution that I came up with (mostly
stolen from org-inlinetask.el):
Add the follow 3 lines to the start of the document:
#+LATEX_HEADER: \usepackage{todonotes}
#+TODO: TODO | DONE
#+TODO: MISSINGFIGURE | FIGUREDONE
and put this in your .emacs file
;; This should give better export of inline tasks to latex
;; #+LATEX_HEADER: \usepackage{todonotes} at the start of the org file
(setq org-inlinetask-export-templates (cons '(latex "%s %s}%s}"
'((if (equal todo "MISSINGFIGURE")
(eval "\\missingfigure{")
(if (equal todo "") (eval
"\\todo[inline]{\\textbf{") (format
"\\todo[inline]{\\textbf{\\textsc\{%s}" todo))
)
heading content))
org-inlinetask-export-templates))
It works but seeing that I'm not very good with elisp, I suspect it
could be improved on. For instance this just adds an extra entry to
org-inlinetask-export-templates instead of replacing the existing
"latex" entry. Any help on improving this would be greatly appreciated.
Cheers,
Chris Witte.
- [O] Inline tasks and latex export,
Christopher Witte <=