• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/textmodes/

Lines Matching +defs:math +defs:sub

890 adaptive  Use relative path for files in the current directory and sub-
2178 \"$\" find math expressions surrounded by $...$
2179 \"$$\" find math expressions surrounded by $$....$$
2180 \"\\(\" find math expressions surrounded by \\(...\\)
2181 \"\\ [\" find math expressions surrounded by \\ [...\\]"
2342 (defcustom org-export-with-sub-superscripts t
2344 When this option is turned on, you can use TeX-like syntax for sub- and
2348 sub- or superscripts.
2357 sub/superscript.
2368 for math can be used as macro names as well. For a list of supported
2380 the first non-white thing on a line. It will also find the math delimiters
2381 like $a=b$ and \\( a=b \\) for inline math, $$a=b$$ and \\[ a=b \\] for
2382 display math.
2404 "Number of stacked braces for sub/superscript matching.
2451 advantage, that the automatic HTML conversions for math symbols and
2452 sub/superscripts can be applied. Org-mode's HTML generator is also
15997 (define-key org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
15998 (define-key org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
16006 This mode supports entering LaTeX environment and math in LaTeX fragments
16013 (defadvice texmathp (around org-math-always-on activate)
16015 This is because we want to insert math symbols without dollars even outside
16016 the LaTeX math segments. If Orgmode thinks that point is actually inside
16023 ((eq this-command 'cdlatex-math-symbol)
16025 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
16030 texmathp-why '("Org-mode embedded math" . 0))
16041 Even though the matchers for math are configurable, this function assumes
16049 inline math after \"$22.34\". The LaTeX fragment formatter will only format
16100 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
16104 (call-interactively 'cdlatex-sub-superscript)
16108 (defun org-cdlatex-math-modify (&optional arg)
16109 "Execute `cdlatex-math-modify' in LaTeX fragments.
16113 (call-interactively 'cdlatex-math-modify)
16305 (:sub-superscript . org-export-with-sub-superscripts)
16359 ("^" . :sub-superscript)
16664 ("sub") ("subset"."⊂")
17273 org-export-with-sub-superscripts
18141 (if org-export-with-sub-superscripts
18142 (setq s (org-export-html-convert-sub-super s)))
18180 "The regular expression matching a sub- or superscript.")
18182 (defun org-export-html-convert-sub-super (string)
18183 "Convert sub- and superscripts in STRING to HTML."
18186 (setq key (if (string= (match-string 2 string) "_") "sub" "sup"))
19281 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
19282 ["Modify math symbol" org-cdlatex-math-modify