On Wed, 18 Aug 2010 09:23:26 -0500, John Hendy wrote: > [...] > Eric, > > I have the title and QED image, but @important@ is rendered literally. See > the attached .org, .pdf, and .tex files. Where is the markup for > @word@provided (who translates @ in org to red/emphasized text in the > output PDF)? > I can't find it in the orgmode manual: > http://orgmode.org/manual/Emphasis-and-monospace.html#Emphasis-and-monospace > > John I thought the processing of @...@ for alerts in beamer was the default but it turns out I have the following settings which add @ to convert text to alert in beamer and bold in HTML exports. --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--- I'm not sure what the default is but you can see what you've got by looking at these two variables.