emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Re: PocketMod for org-mode


From: pete phillips
Subject: Re: [Orgmode] Re: PocketMod for org-mode
Date: Wed, 17 Oct 2007 13:14:13 +0100

>>>>> "Leo" == Leo  <address@hidden> writes:

    > On 2007-10-17 03:03 +0100, Dan Griswold wrote:
    >> Also, a little gotcha I've found, which may catch some of us
    >> org-mode GTD-ers: cal-tex.el does not check for the @ symbol when
    >> inputting from the diary, and thus does not escape it, leading to
    >> latex-errors on processing.

    Leo> This probably should be reported to emacs-devel.

As an interim measure, if you patch the Makefile as follows:

Change:

        %.dvi: %.tex
                $(LATEX) $^
to
        %.dvi: %.tex
                sed 's/\\verb|@|/\@/g' < $< > /tmp/temp-org-file.$$$$; mv 
/tmp/temp-org-file.$$$$ $<
                $(LATEX) $^

On the basis that any '@'s get changed to \verb|@|, it just escapes
them. Clearly only a temporary measure!
Pete




reply via email to

[Prev in Thread] Current Thread [Next in Thread]