emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] [bug, ox-latex] Parsed keywords and export with subscript


From: Rasmus
Subject: Re: [O] [bug, ox-latex] Parsed keywords and export with subscript
Date: Thu, 23 Mar 2017 16:23:08 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux)

Nicolas Goaziou <address@hidden> writes:

> Hello,
>
> Rasmus <address@hidden> writes:
>
>> It would seem that parse doesn't behave correctly when
>> org-export-with-sub-superscripts is turned off via #+options.
>>
>> Example:
>>
>>     #+options: ^:nil
>>     #+date: a_b
>>
>>     * test
>>     a_b
>>
>> Exported result with ox-latex:
>>
>>     %% ...
>>     \date{a\(\_b\)}
>>     %% ...
>>     \section{test}
>>     a\_b
>>     %% ...
>>
>> Expected result 
>>
>>     %% ...
>>     \date{a\_b}
>>     %% ...
>>     \section{test}
>>     a\_b
>>     %% ...
>
> Fixed. Thank you.

Backend-specific keywords are still an issue.  E.g. try this example with
ox-latex or ox-koma-letter.

    #+options: ^:nil
    #+author: 2017_03_23
    #+subject: 2017_03_23
    #+title: 2017_03_23
    #+subtitle: 2017_03_23

In patch 6cd42b08f9347a8d6084ec23548b754f9e02b2a1 you used

    (dolist (entry org-export-options-alist)

in ‘org-export-as’ Would it be possible to use this list instead?

    (append (org-export-get-all-options backend) org-export-options-alist)

Thanks,
Rasmus

-- 
Enough with the blah blah!



reply via email to

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