From: Eric S Fraga <e.fraga@ucl.ac.uk>
To: Rasmus <rasmus@gmx.us>
Cc: emacs-orgmode@gnu.org
Subject: Re: math in parentheses
Date: Fri, 31 Oct 2014 18:09:37 +0000 [thread overview]
Message-ID: <87fve43yce.fsf@ucl.ac.uk> (raw)
In-Reply-To: <87k33jf4hj.fsf@gmx.us> (rasmus@gmx.us's message of "Wed, 29 Oct 2014 13:24:40 +0100")
On Wednesday, 29 Oct 2014 at 13:24, Rasmus wrote:
[...]
> Just out of curiosity, do you actually type \(·\) or have you somehow
> remapped $·$ to insert \(·\)?
I have been using the following for quite some time:
#+begin_src emacs-lisp
;; from Nicolas Richard <theonewiththeevillook@yahoo.fr>
;; Date: Fri, 8 Mar 2013 16:23:02 +0100
;; Message-ID: <87vc913oh5.fsf@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.3.1, Org release_8.3beta-372-gdd70cf
prev parent reply other threads:[~2014-10-31 21:44 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-28 12:54 math in parentheses Andreas Leha
2014-10-28 15:50 ` Richard Lawrence
2014-10-28 16:03 ` Andreas Leha
2014-10-28 16:31 ` Rasmus
2014-10-28 16:57 ` Andreas Leha
2014-10-28 22:32 ` Rasmus
2014-10-29 9:55 ` Andreas Leha
2014-10-28 17:14 ` Nick Dokos
2014-10-28 17:30 ` Andreas Leha
2014-10-29 12:24 ` Rasmus
2014-10-29 13:03 ` Nick Dokos
2014-10-31 18:09 ` Eric S Fraga [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87fve43yce.fsf@ucl.ac.uk \
--to=e.fraga@ucl.ac.uk \
--cc=emacs-orgmode@gnu.org \
--cc=rasmus@gmx.us \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).