* Question on org-beamer markup
@ 2011-01-12 17:40 Erik Iverson
2011-01-12 20:24 ` Sébastien Vauban
0 siblings, 1 reply; 4+ messages in thread
From: Erik Iverson @ 2011-01-12 17:40 UTC (permalink / raw)
To: emacs-orgmode
Hello,
According to http://orgmode.org/worg/org-tutorials/org-beamer/tutorial.html
the following markup should work when exporting to PDF from an
org-beamer document.
- the first, very @important@, point!
- the previous point shows the use of the special markup which
translates to the Beamer specific /alert/ command for highlighting
text.
However, upon export the resulting .tex file does not actually contain
this translation from @important@ to the alert command, but rather sill
has @important@ in the output.
Am I missing some part of the setup process?
I am using the latest org pulled from git.
Thanks!
--Erik
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Question on org-beamer markup
2011-01-12 17:40 Question on org-beamer markup Erik Iverson
@ 2011-01-12 20:24 ` Sébastien Vauban
2011-01-13 5:07 ` Rafael Villarroel
0 siblings, 1 reply; 4+ messages in thread
From: Sébastien Vauban @ 2011-01-12 20:24 UTC (permalink / raw)
To: emacs-orgmode-mXXj517/zsQ
Hi Erik,
Erik Iverson wrote:
> According to http://orgmode.org/worg/org-tutorials/org-beamer/tutorial.html
>
> the following markup should work when exporting to PDF from an org-beamer
> document.
>
> - the first, very @important@, point!
> - the previous point shows the use of the special markup which
> translates to the Beamer specific /alert/ command for highlighting
> text.
>
> However, upon export the resulting .tex file does not actually contain this
> translation from @important@ to the alert command, but rather sill has
> @important@ in the output.
>
> Am I missing some part of the setup process?
You must update *manually* the var =org-export-latex-emphasis-alist=:
#+begin_src emacs-lisp
;; alist of LaTeX expressions to convert emphasis fontifiers
(setq org-export-latex-emphasis-alist
'(("*" "\\textbf{%s}" nil)
("/" "\\emph{%s}" nil)
("_" "\\underline{%s}" nil)
("+" "\\st{%s}" nil)
("=" "\\url{%s}" nil)
;; `url' breaks lines in long strings (was `verb')
("~" "\\verb~%s~" t)
("@" "\\alert{%s}" nil)))
#+end_src
This is an annoyance, yes... However, I don't have (yet?) a clever idea about
how to do this in a portable way, ie it should not cause problem when used in
non-beamer documents...
Best regards,
Seb
--
Sébastien Vauban
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode-mXXj517/zsQ@public.gmane.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Question on org-beamer markup
2011-01-12 20:24 ` Sébastien Vauban
@ 2011-01-13 5:07 ` Rafael Villarroel
2011-01-13 16:41 ` Eric S Fraga
0 siblings, 1 reply; 4+ messages in thread
From: Rafael Villarroel @ 2011-01-13 5:07 UTC (permalink / raw)
To: emacs-orgmode
Sébastien Vauban <wxhgmqzgwmuf@spammotel.com> writes:
> Erik Iverson wrote:
>> According to http://orgmode.org/worg/org-tutorials/org-beamer/tutorial.html
>>
>> the following markup should work when exporting to PDF from an org-beamer
>> document.
>>
>> - the first, very @important@, point!
>> - the previous point shows the use of the special markup which
>> translates to the Beamer specific /alert/ command for highlighting
>> text.
>>
>> However, upon export the resulting .tex file does not actually contain this
>> translation from @important@ to the alert command, but rather sill has
>> @important@ in the output.
>>
>> Am I missing some part of the setup process?
>
> You must update *manually* the var =org-export-latex-emphasis-alist=:
>
> #+begin_src emacs-lisp
> ;; alist of LaTeX expressions to convert emphasis fontifiers
> (setq org-export-latex-emphasis-alist
> '(("*" "\\textbf{%s}" nil)
> ("/" "\\emph{%s}" nil)
> ("_" "\\underline{%s}" nil)
> ("+" "\\st{%s}" nil)
> ("=" "\\url{%s}" nil)
> ;; `url' breaks lines in long strings (was `verb')
> ("~" "\\verb~%s~" t)
> ("@" "\\alert{%s}" nil)))
> #+end_src
>
This should be enough right?
(add-to-list 'org-emphasis-alist '("@" org-warning "<i>" "</i>"))
(add-to-list 'org-export-latex-emphasis-alist '("@" "\\alert{%s}" nil))
However, it does not work for me with
Org-mode version 7.4 (release_7.4.166.gf7a7.dirty)
(that is, neither the text between @'s is fontified, nor is exported to
an alert, as Erik mentioned.
This, however, does work for me:
(add-to-list 'org-emphasis-alist '("+" org-warning "<i>" "</i>"))
(add-to-list 'org-export-latex-emphasis-alist '("+" "\\alert{%s}" nil))
so I'm thinking, maybe there is something else to be done to declare @
as a valid delimiter?
Regards,
Rafael
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Re: Question on org-beamer markup
2011-01-13 5:07 ` Rafael Villarroel
@ 2011-01-13 16:41 ` Eric S Fraga
0 siblings, 0 replies; 4+ messages in thread
From: Eric S Fraga @ 2011-01-13 16:41 UTC (permalink / raw)
To: Rafael Villarroel; +Cc: emacs-orgmode
Rafael Villarroel <rvf0068@gmail.com> writes:
> Sébastien Vauban <wxhgmqzgwmuf@spammotel.com> writes:
>
>> Erik Iverson wrote:
>>> According to http://orgmode.org/worg/org-tutorials/org-beamer/tutorial.html
>>>
>>> the following markup should work when exporting to PDF from an org-beamer
>>> document.
>>>
>>> - the first, very @important@, point!
>>> - the previous point shows the use of the special markup which
>>> translates to the Beamer specific /alert/ command for highlighting
>>> text.
>>>
>>> However, upon export the resulting .tex file does not actually contain this
>>> translation from @important@ to the alert command, but rather sill has
>>> @important@ in the output.
>>>
>>> Am I missing some part of the setup process?
>>
>> You must update *manually* the var =org-export-latex-emphasis-alist=:
>>
>> #+begin_src emacs-lisp
>> ;; alist of LaTeX expressions to convert emphasis fontifiers
>> (setq org-export-latex-emphasis-alist
>> '(("*" "\\textbf{%s}" nil)
>> ("/" "\\emph{%s}" nil)
>> ("_" "\\underline{%s}" nil)
>> ("+" "\\st{%s}" nil)
>> ("=" "\\url{%s}" nil)
>> ;; `url' breaks lines in long strings (was `verb')
>> ("~" "\\verb~%s~" t)
>> ("@" "\\alert{%s}" nil)))
>> #+end_src
>>
>
> This should be enough right?
>
> (add-to-list 'org-emphasis-alist '("@" org-warning "<i>" "</i>"))
> (add-to-list 'org-export-latex-emphasis-alist '("@" "\\alert{%s}" nil))
>
> However, it does not work for me with
> Org-mode version 7.4 (release_7.4.166.gf7a7.dirty)
> (that is, neither the text between @'s is fontified, nor is exported to
> an alert, as Erik mentioned.
>
>
> This, however, does work for me:
>
> (add-to-list 'org-emphasis-alist '("+" org-warning "<i>" "</i>"))
> (add-to-list 'org-export-latex-emphasis-alist '("+" "\\alert{%s}" nil))
>
> so I'm thinking, maybe there is something else to be done to declare @
> as a valid delimiter?
>
> Regards,
> Rafael
Strange. I don't specify anything anywhere in my initialisation files
about the @ symbol being special. All I have in my files is:
#+begin_src emacs-lisp
(setq org-emphasis-alist (quote (("*" bold "<b>" "</b>")
("/" italic "<i>" "</i>")
("_" underline "<span style=\"text-decoration:underline;\">" "</span>")
("=" org-code "<code>" "</code>" verbatim)
("~" org-verbatim "<code>" "</code>" verbatim)
("+" (:strike-through t) "<del>" "</del>")
("@" org-warning "<b>" "</b>")))
org-export-latex-emphasis-alist (quote
(("*" "\\textbf{%s}" nil)
("/" "\\emph{%s}" nil)
("_" "\\underline{%s}" nil)
("+" "\\texttt{%s}" nil)
("=" "\\verb=%s=" nil)
("~" "\\verb~%s~" t)
("@" "\\alert{%s}" nil)))
)
#+end_src
I would have thought that =add-to-list= should have worked as well.
However, I do have this customisation at the very *start* of all of my
org customisations, even *before* my =(require 'org-install)= line! It
may be that these variables need to be set before you load org?
Alternatively, maybe you should use emacs's customisation methods to set
these variables?
HTH,
eric
--
: Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 23.2.1
: using Org-mode version 7.4 (release_7.4.168.g0ec8)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-01-13 17:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-12 17:40 Question on org-beamer markup Erik Iverson
2011-01-12 20:24 ` Sébastien Vauban
2011-01-13 5:07 ` Rafael Villarroel
2011-01-13 16:41 ` Eric S Fraga
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).