From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: [org-beamer] \alert Date: Mon, 25 Jan 2010 10:58:42 +0000 Message-ID: <87pr4y1me5.wl%ucecesf@ucl.ac.uk> References: <871vhffhf8.fsf@gmx.ch> Reply-To: Eric S Fraga Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NZMel-0001Iv-G4 for emacs-orgmode@gnu.org; Mon, 25 Jan 2010 05:58:55 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NZMeg-0001Id-3Y for emacs-orgmode@gnu.org; Mon, 25 Jan 2010 05:58:54 -0500 Received: from [199.232.76.173] (port=59718 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NZMef-0001Ia-NL for emacs-orgmode@gnu.org; Mon, 25 Jan 2010 05:58:49 -0500 Received: from vscane-b.ucl.ac.uk ([144.82.108.141]:49314) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NZMef-00084v-89 for emacs-orgmode@gnu.org; Mon, 25 Jan 2010 05:58:49 -0500 Received: from pinto.chemeng.ucl.ac.uk ([128.40.74.171] helo=pinto.chemeng.ucl.ac.uk.ucl.ac.uk) by vscane-b.ucl.ac.uk with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.60) (envelope-from ) id 1NZMeZ-0006PM-UL for emacs-orgmode@gnu.org; Mon, 25 Jan 2010 10:58:43 +0000 In-Reply-To: <871vhffhf8.fsf@gmx.ch> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org-mode mailing list (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 "" "") ("/" italic "" "") ("_" underline "" "") ("=" org-code "" "" verbatim) ("~" org-verbatim "" "" verbatim) ("+" (:strike-through t) "" "") ("@" org-warning "" ""))) 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