From: dieter@schoen.or.at
To: emacs-orgmode@gnu.org
Subject: Bug: org-use-sub-superscripts not working [8.2.3b (8.2.3b-elpa @ c:/Users/xxx/.emacs.d/elpa/org-20131112/)]
Date: Thu, 14 Nov 2013 19:38:46 +0000 (GMT) [thread overview]
Message-ID: <d628849.61096c669907671f959cb315b4dee411@afterlogic.edis.at> (raw)
[-- Attachment #1: Type: text/plain, Size: 4674 bytes --]
hi list,
i am not sure whether i have discovered a bug or just using this not in
the right way.
i have an org document where i have lots of underscores in words (they
are function names, e.g. BC_send) and do not want them to be interpreted
as subscripts.
the documentation says that the variable org-use-sub-superscript can be
used to customize this behaviour:
- t..convert every underscore
- {}..only convert when text is preprended by an underscore and within
braces
- nil..no conversion at all
in my environment, this does not work. output is always the same.
i exported to html.
i have set the variable in my
.emacs. i have also tried without my defs with emacs -q --no-desktop.
i found a similar report on the list, where they tried #+OPTIONS, this does
also not fix
my problem.
finally i have wrote a little elisp file to programmatically reproduce
my situation, here it is:
------------cut-----------------------
(defun insert-version ()
"insert org and emacs version information"
(interactive)
(insert (concat "emacs-version: " emacs-version "n"))
(insert (concat "org-version: " org-version "n")))
(defun insert-org-text ()
"insert some org text with sub and superscripts
and select the org text"
(interactive)
(insert (concat "nnorg-use-sub-superscripts: ")
(if
(eq org-use-sub-superscripts t) "tn"
(if (eq org-use-sub-superscripts '{}) "{}n"
(if (eq org-use-sub-superscripts nil) "niln" "not
niln"))))
(insert "plain underscore: X_sub 3^supern")
(insert "braces : X_{sub} 3^{super}n")
(push-mark)
(insert "plain underscore: X_sub 3^supern")
(insert "braces : X_{sub} 3^{super}n")
(exchange-point-and-mark))
(progn
(let ((orgfile "blaa.org"))
(get-buffer-create orgfile)
(set-buffer orgfile)
(split-window-horizontally)
(switch-to-buffer-other-window orgfile)
(kill-region (point-min) (point-max))
(org-mode)
(insert-version)
(setq values '(t {} nil))
(while values
(setq org-use-sub-superscripts (car values))
(insert-org-text)
(org-html-convert-region-to-html)
(setq values (cdr values)))))
-------------cut---------
and here is my output:
-------------cut---------
emacs-version: 24.3.1
org-version: 8.2.3b
org-use-sub-superscripts: t
plain underscore: X_sub 3^super
braces : X_{sub} 3^{super}
plain underscore: Xsub 3super
braces : Xsub 3super
org-use-sub-superscripts: {}
plain underscore: X_sub 3^super
braces : X_{sub} 3^{super}
plain underscore: Xsub 3super
braces : Xsub 3super
org-use-sub-superscripts: nil
plain underscore: X_sub 3^super
braces : X_{sub} 3^{super}
plain underscore: Xsub 3super
braces : Xsub 3super
-------------cut---------
Emacs : GNU Emacs 24.3.1 (i386-mingw-nt6.1.7601)
of 2013-03-17 on MARVIN
Package: Org-mode version 8.2.3b (8.2.3b-elpa @
c:/Users/atw113y5/AppData/Roaming/.emacs.d/elpa/org-20131112/)
current state:
==============
(setq
org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point
org-babel-execute-safely-maybe)
org-latex-format-headline-function
'org-latex-format-headline-default-function
org-tab-first-hook '(org-hide-block-toggle-maybe
org-src-native-tab-command-maybe
org-babel-hide-result-toggle-maybe
org-babel-header-arg-expand)
org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
org-cycle-hide-inline-tasks org-cycle-show-empty-lines
org-optimize-window-after-visibility-change)
org-agenda-before-write-hook '(org-agenda-add-entry-text)
org-speed-command-hook '(org-speed-command-default-hook
org-babel-speed-command-hook)
org-babel-pre-tangle-hook '(save-buffer)
org-occur-hook '(org-first-headline-recenter)
org-metaup-hook '(org-babel-load-in-session-maybe)
org-confirm-elisp-link-function 'yes-or-no-p
org-clock-out-hook '(org-clock-remove-empty-clock-drawer)
org-mode-hook '(#[nil "300301302303304S207"
[org-add-hook change-major-mode-hook org-show-block-all
append local]
5]
#[nil "300301302303304S207"
[org-add-hook change-major-mode-hook
org-babel-show-result-all append local]
5]
org-babel-result-hide-spec org-babel-hide-all-hashes)
org-export-dispatch-use-expert-ui t
org-metadown-hook '(org-babel-pop-to-session-maybe)
org-src-mode-hook '(org-src-babel-configure-edit-buffer
org-src-mode-configure-edit-buffer)
org-after-todo-state-change-hook '(org-clock-out-if-current)
org-confirm-shell-link-function 'yes-or-no-p
)
[-- Attachment #2: Type: text/html, Size: 13456 bytes --]
next reply other threads:[~2013-11-14 19:39 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-14 19:38 dieter [this message]
2013-11-14 21:19 ` Bug: org-use-sub-superscripts not working [8.2.3b (8.2.3b-elpa @ c:/Users/xxx/.emacs.d/elpa/org-20131112/)] Nick Dokos
2013-11-15 9:10 ` Bastien
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=d628849.61096c669907671f959cb315b4dee411@afterlogic.edis.at \
--to=dieter@schoen.or.at \
--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).