Org mode导出文件上下标问题

org mode已经设置了到处上标,下标仅使用大括号,查看org-use-sub-superscripts的值也是{}了,但是export成html时却并不生效。

(setq org-use-sub-superscripts (quote {}))

只能设置options#+OPTIONS: ^:{}

求解如何能设置org-use-sub-superscripts生效。

Export-settings

I know. But by setting the org-use-sub-superscripts, it’s not working…

看看它的 docstring,它并不影响导出。

org-use-sub-superscripts is a variable defined in ‘org.el’.
Its value is t

Documentation:
Non-nil means interpret "_" and "^" for display.

If you want to control how Org exports those characters, see
‘org-export-with-sub-superscripts’.  ‘org-use-sub-superscripts’
used to be an alias for ‘org-export-with-sub-superscripts’ in
Org <8.0, it is not anymore.

是用了旧的那个变量。。。现在可以了,多谢!