Hello,
Jambunathan K writes:
> Nicolas Goaziou writes:
>
>> Jambunathan K writes:
>>
>>> Nicolas Goaziou writes:
>>>
#+begin_src emacs-lisp
(defun my-options-change-fun (tree backend info)
(when (org-export-derived-backend-p backend 'e-beamer)
(plist-put info :with-a
Hello,
cbe...@tajo.ucsd.edu writes:
> 'backend' is in the scope of transcoding functions like
> inline-src-block.
>
> I am currently taking advantage of this, but it is a shortcut rather
> than a necessity.
>
> Is your advice "Don't do that" ?
I would rather say "Don't do that in public code".
Nicolas Goaziou writes:
> Hello,
>
> Ezequiel Birman writes:
>
>> Is it possible to write something like this with the new exporter?
>>
>> #+OPTIONS: (if (and (boundp 'org-export-current-backend) (eq
>> org-export-current-backend 'e-beamer)) "H:1" "H:3")
>
> There is no `org-export-current-back
Hello,
Andreas Leha writes:
> Sorry for hijacking this thread. But I am also interested in backend
> specific options. Could you give an example of how to achieve something
> like this with the new exporter:
>
> #+begin_src R :results graphics :file (if (and (boundp
> 'org-export-current-back
Hi Nicolas,
Nicolas Goaziou writes:
> Hello,
>
> Ezequiel Birman writes:
>
>> Is it possible to write something like this with the new exporter?
>>
>> #+OPTIONS: (if (and (boundp 'org-export-current-backend) (eq
>> org-export-current-backend 'e-beamer)) "H:1" "H:3")
>
> There is no `org-export
Nicolas Goaziou writes:
> Jambunathan K writes:
>
>> Nicolas Goaziou writes:
>>
>>> #+begin_src emacs-lisp
>>> (defun my-options-change-fun (tree backend info)
>>> (when (org-export-derived-backend-p backend 'e-beamer)
>>> (plist-put info :with-author nil))
>>> ;; Don't forget to return
Jambunathan K writes:
> Nicolas Goaziou writes:
>
>> #+begin_src emacs-lisp
>> (defun my-options-change-fun (tree backend info)
>> (when (org-export-derived-backend-p backend 'e-beamer)
>> (plist-put info :with-author nil))
>> ;; Don't forget to return tree.
>> tree)
>
> CAVEAT: plist-
Nicolas Goaziou writes:
> #+begin_src emacs-lisp
> (defun my-options-change-fun (tree backend info)
> (when (org-export-derived-backend-p backend 'e-beamer)
> (plist-put info :with-author nil))
> ;; Don't forget to return tree.
> tree)
CAVEAT: plist-put can return a different list, at
> "Nicolas" == Nicolas Goaziou writes:
> Hello, Ezequiel Birman writes:
>> Is it possible to write something like this with the new
>> exporter?
>>
>> #+OPTIONS: (if (and (boundp 'org-export-current-backend) (eq
>> org-export-current-backend 'e-beamer)) "H:1" "H:3")
Hello,
Ezequiel Birman writes:
> Is it possible to write something like this with the new exporter?
>
> #+OPTIONS: (if (and (boundp 'org-export-current-backend) (eq
> org-export-current-backend 'e-beamer)) "H:1" "H:3")
There is no `org-export-current-backend' in the new exporter. Besides,
what
Is it possible to write something like this with the new exporter?
#+OPTIONS: (if (and (boundp 'org-export-current-backend) (eq
org-export-current-backend 'e-beamer)) "H:1" "H:3")
>From what I read in org-export.el the backend is stored in a plist, not
sure how to get it's value when exporting.
11 matches
Mail list logo