On Tuesday, 24 Feb 2015 at 18:53, Rasmus wrote: > \(ยท\) Should work unambiguously.
And, for the OP, if you are like me and have $...$ burned into your autonomic system, the following snippet of code is quite useful: #+begin_src emacs-lisp :tangle "esf-org.el" ;; from Nicolas Richard <theonewiththeevill...@yahoo.fr> ;; Date: Fri, 8 Mar 2013 16:23:02 +0100 ;; Message-ID: <87vc913oh5....@yahoo.fr> (defun yf/org-electric-dollar nil "When called once, insert \\(\\) and leave point in between. When called twice, replace the previously inserted \\(\\) by one $." (interactive) (if (and (looking-at "\\\\)") (looking-back "\\\\(")) (progn (delete-char 2) (delete-char -2) (insert "$")) (insert "\\(\\)") (backward-char 2))) (define-key org-mode-map (kbd "$") 'yf/org-electric-dollar) #+end_src -- : Eric S Fraga (0xFFFCF67D), Emacs 24.4.1, Org release_8.3beta-820-gd92ef9