[Orgmode] how to use \autoref inside #+CAPTION: ?

2010-04-06 Thread Aaron Hammitt
Hello,
I recently upgraded to the development release. I had previously (with
version 6.34c, I believe) been able to use the LaTeX \autoref macro inside
#+CAPTION:, to reference a table from a figure caption for example. But with
the latest release the curly braces inside #+CAPTION are escaped, so I end
up with something like \autoref\{tbl:ECB-SIF-compare\} in my LaTeX document.
Is there a way to get past this new behavior and have the braces correctly
written to the LaTeX file ("unescaped")?

Thank you.
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Request for feedback about LaTeX setup changes

2010-04-07 Thread Aaron Hammitt
I like the fact that I don't have to clutter org-export-latex-classes with
so many options. I also like org-export-latex-packages-alist better than
what I was doing previously with org-export-latex-append-header.

The downside is that I had some conflicts between the org default packages
(with either wasysym or latexsym, but now I don't recall which one) and
other packages I import in all my documents. Also, I like to use the
hyperref package with colorlinks=True and my own linkcolor, so I had to
modify org-export-latex-default-packages-alist anyway. Now I'm in the
position of still having to manually update
org-export-latex-default-packages-alist if you change the packages that are
required by orgmode in the future.

Despite the initial work of figuring out where the conflicts were arising
from (after first upgrading to 6.35) and having to download some of the
default packages, I do like the new setup. I can't think of a better
solution; everything I can think of that would solve one problem would just
lead to another. And like you said, I can always opt out...
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] how to use \autoref inside #+CAPTION: ?

2010-04-07 Thread Aaron Hammitt
Perfect. Thank you for the quick fix. I don't know how you do it.

Thanks again, and I appreciate all the work you've put into this fantastic
tool.

On Wed, Apr 7, 2010 at 10:29 AM, Carsten Dominik
wrote:

> Hi Aaron, this should work now again, in 6.35d.
>
> Thanks for the report
>
> - Carsten
>
>
> On Apr 6, 2010, at 6:57 PM, Aaron Hammitt wrote:
>
>   Hello,
>> I recently upgraded to the development release. I had previously (with
>> version 6.34c, I believe) been able to use the LaTeX \autoref macro inside
>> #+CAPTION:, to reference a table from a figure caption for example. But with
>> the latest release the curly braces inside #+CAPTION are escaped, so I end
>> up with something like \autoref\{tbl:ECB-SIF-compare\} in my LaTeX document.
>> Is there a way to get past this new behavior and have the braces correctly
>> written to the LaTeX file ("unescaped")?
>>
>> Thank you.
>> ___
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
>
>
>
>
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] persistent default task with org-clock-persist?

2010-04-08 Thread Aaron Hammitt
I have (setq org-clock-persist 'history) in my .emacs (and of course
(org-clock-persistence-insinuate)), and the most recently-used tasks are
indeed persistent between Emacs sessions. However, I like to use C-u C-u C-c
C-x C-i to set a default task for general planning, etc. This default task
does not seem to persist between sessions. Is there a way to either make the
default task persistent, or to increase the number of tasks that are kept in
the history?

I apologize if this answer is in the documentation and I have somehow missed
it.
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[O] orgmode 7.7 broke latex beamer export

2011-09-02 Thread Aaron Hammitt
I just upgraded to version 7.7 from an early version of 7 (7.0 or 7.1 I
believe), and it broke my ability to export a beamer presentation from
orgmode to PDF. After some poking around I found that the default value of
org-latex-to-pdf-process was the problem. Placing the following in my .emacs
fixed the problem:

(setq org-latex-to-pdf-process
  '("pdflatex -interaction=nonstopmode %f" "pdflatex
-interaction=nonstopmode %f"))

This may be a known issue, but I didn't find anything in a quick search of
the mailing list. I thought I would post here for the benefit of anyone else
who may run into the same problem.