Re: [Orgmode] [org-beamer] \alert

2010-01-25 Thread Eric S Fraga
(mistakenly sent this only to the OP... resending to list as well)

At 24 Jan 2010 20:10:03 +0100,
Sven Bretfeld wrote:
 
 Hi
 
 Is there any Symbol in org-beamer for \alert{Text}? In presentations
 \alert is recommended instead of italics. We could even think of
 translating text enclosed in slashes / ... / to \alert{} by default in
 the beamer class.

There was a long discussion about this back in November on this
mailing list.  Essentially, you can add this functionality yourself:

--8---cut here---start-8---
(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)))
  )
--8---cut here---end---8---

Note the last entry in each of these variables; the other elements in
each are their default values.

HTH,
eric


___
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] [org-beamer] \alert

2010-01-25 Thread Sven Bretfeld
Hello Eric

Eric S Fraga ucec...@ucl.ac.uk writes:

 There was a long discussion about this back in November on this
 mailing list.  

Oh sorry, I have missed that.

 Essentially, you can add this functionality yourself:

Thank you,

Sven


___
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] [org-beamer] \alert

2010-01-24 Thread Sven Bretfeld
Hi

Is there any Symbol in org-beamer for \alert{Text}? In presentations
\alert is recommended instead of italics. We could even think of
translating text enclosed in slashes / ... / to \alert{} by default in
the beamer class.

Anyway, thanks to all developers for this very useful new addon.

Greetings

Sven


___
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