From: Noorul Islam K M <noorul@noorul.com>
To: emacs-orgmode@gnu.org
Cc: Arik Mitschang <amitschang@cfa.harvard.edu>
Subject: [Arik Mitschang] org-mode ASCII export of in-word LaTeX symbols support
Date: Fri, 15 Oct 2010 12:59:14 +0530 [thread overview]
Message-ID: <87bp6v6hit.fsf@noorul.maa.corp.collab.net> (raw)
[-- Attachment #1: Type: text/plain, Size: 181 bytes --]
I am not sure whether this is already forwarded. I am forwarding this
thread from emacs-devel mailing list. Hopefully patchworks picks up this
patch.
Thanks and Regards
Noorul
[-- Attachment #2: Type: message/rfc822, Size: 4561 bytes --]
From: Arik Mitschang <amitschang@cfa.harvard.edu>
To: emacs-devel@gnu.org
Subject: org-mode ASCII export of in-word LaTeX symbols support
Date: Thu, 14 Oct 2010 11:59:40 -0400
Message-ID: <19639.10476.252832.800584@gargle.gargle.HOWL>
Hi emacs-devel,
I would like to suggest the following small change to the org-mode
ascii export feature in emacs 23.2. The reason for this is because
org-mode export supports embedded LaTeX in a LaTeX sort of fashion
where a symbol can be placed inside a word provided it is terminated
with '{}'. However in an ascii export the '{}' remains trailing the
converted symbol making it very difficult to seamlessly support these
inlined symbols across multiple export formats.
The manual likewise states:
"If you need such a symbol inside a word, terminate it like this: ‘\Aacute{}stor’."
indicating that this form is (or should be) supported. The fix is
quite simple, the regexp for matching LaTeX symbols to be exported
needs to allow for the terminating '{}' if existing. I have included
the necessary patch below.
Thanks alot,
~Arik
GNU Emacs 23.2.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.10.4) of 2010-07-26 on lacuna
--- org-ascii.el
+++ org-ascii.el
@@ -586,7 +586,7 @@
(defun org-ascii-replace-entities ()
"Replace entities with the ASCII representation."
(let (e)
- (while (re-search-forward "\\\\\\([a-zA-Z]+[0-9]*\\)" nil t)
+ (while (re-search-forward "\\\\\\([a-zA-Z]+[0-9]*\\)\\({}\\)?" nil t)
(org-if-unprotected-at (match-beginning 1)
(setq e (org-entity-get-representation (match-string 1)
org-export-ascii-entities))
[-- Attachment #3: Type: text/plain, Size: 201 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
next reply other threads:[~2010-10-15 7:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-15 7:29 Noorul Islam K M [this message]
2010-10-15 7:40 ` [Arik Mitschang] org-mode ASCII export of in-word LaTeX symbols support Carsten Dominik
2010-10-15 14:34 ` Arik Mitschang
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=87bp6v6hit.fsf@noorul.maa.corp.collab.net \
--to=noorul@noorul.com \
--cc=amitschang@cfa.harvard.edu \
--cc=emacs-orgmode@gnu.org \
/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).