From: Eric S Fraga <e.fraga@ucl.ac.uk>
To: Timothy <tecosaur@gmail.com>
Cc: emacs-orgmode@gnu.org, "Rudolf Adamkovič" <salutis@me.com>
Subject: Re: Inequalities in math blocks
Date: Tue, 05 Oct 2021 13:19:25 +0100 [thread overview]
Message-ID: <878rz7mzoy.fsf@ucl.ac.uk> (raw)
In-Reply-To: <87h7dvhpa5.fsf@gmail.com> (Timothy's message of "Tue, 05 Oct 2021 15:58:28 +0800")
Slightly off-topic but, just in case anybody is interested, here is some
code I use to allow me to easily get \(...\) by typing $:
#+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
Typing two $ in a row inserts a single $.
--
: Eric S Fraga via Emacs 28.0.60, Org release_9.5-30-g9e71df
: Latest paper written in org: https://arxiv.org/abs/2106.05096
next prev parent reply other threads:[~2021-10-05 12:31 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-03 11:04 Inequalities in math blocks Rudolf Adamkovič
2021-10-03 12:19 ` Max Nikulin
2021-10-03 13:12 ` Timothy
2021-10-05 7:55 ` Rudolf Adamkovič
2021-10-05 7:58 ` Timothy
2021-10-05 12:19 ` Eric S Fraga [this message]
2021-10-05 12:00 ` Max Nikulin
2021-10-05 12:50 ` Rudolf Adamkovič
2021-10-03 13:14 ` Rudolf Adamkovič
2021-10-12 1:11 ` Nick Dokos
2021-10-12 12:02 ` Max Nikulin
2021-10-03 16:17 ` [PATCH] org-manual.org: Update links to MathJax docs Max Nikulin
2022-08-21 5:53 ` Ihor Radchenko
2022-08-21 6:20 ` Max Nikulin
2022-08-22 2:39 ` Ihor Radchenko
2022-08-22 14:52 ` Max Nikulin
2022-08-23 2:32 ` Update Woof! version at updates.orgmode.org? (was: [PATCH] org-manual.org: Update links to MathJax docs) Ihor Radchenko
2022-08-23 15:02 ` Update Woof! version at updates.orgmode.org? Max Nikulin
2022-09-01 9:07 ` Bastien
2022-09-01 9:02 ` Bastien
2021-10-06 7:39 ` Inequalities in math blocks Rudolf Adamkovič
2021-10-07 11:30 ` Greg Minshall
2021-10-07 11:33 ` Timothy
2021-10-07 12:13 ` Greg Minshall
2021-10-07 12:53 ` Rudolf Adamkovič
2021-10-07 13:05 ` Timothy
2021-10-07 15:05 ` Max Nikulin
2021-10-07 19:48 ` Rudolf Adamkovič
2022-11-05 13:06 ` Max Nikulin
2022-11-06 3:05 ` [BUG] Escaping "<" and ">" inside math blocks when exporting to HTML/MathJax (was: Inequalities in math blocks) Ihor Radchenko
2021-10-07 19:25 ` Inequalities in math blocks Rudolf Adamkovič
2021-10-08 12:37 ` Greg Minshall
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=878rz7mzoy.fsf@ucl.ac.uk \
--to=e.fraga@ucl.ac.uk \
--cc=emacs-orgmode@gnu.org \
--cc=salutis@me.com \
--cc=tecosaur@gmail.com \
/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).