Mercurial > emacs
view lisp/org/org-entities.el @ 109581:06384b3caebf
Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
* lisp/menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
(menu-bar-showhide-tool-bar-menu-customize-disable)
(menu-bar-showhide-tool-bar-menu-customize-enable-right)
(menu-bar-showhide-tool-bar-menu-customize-enable-top)
(menu-bar-showhide-tool-bar-menu-customize-enable-bottom): New functions
(menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
make a menu for Options => toolbar that can move it.
* src/frame.c (Qtool_bar_position): New variable.
(make_frame): Set tool_bar_position to Qtop.
(frame_parms): Add tool-bar-position.
(x_report_frame_params): Store tool_bar_position.
(x_set_fringe_width): Reset wm size hint after fringe changes.
* src/frame.h (struct frame): Add tool_bar_position.
(Qbottom): Declare.
* src/gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
(xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
(xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
(xg_create_frame_widgets): Create a hobox for placing widgets
vertically. Use gtk_box_pack_start.
(xg_height_or_width_changed): Renamed from xg_height_changed.
(x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
(xg_update_frame_menubar, free_frame_menubar): Change to
xg_height_or_width_changed.
(xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
size correctly. Remove hardcoded 4, instead use handlebox size -
toolbar size.
(xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
size correctly. Use handlebox size + toolbar size as additional
size.
(xg_pack_tool_bar): POS is a new parameter.
Set orientation of tool bar based on pos.
Only make handlebox_widget if NULL.
Check if tool bar goes to vbox or hbox depending on pos.
(xg_update_tool_bar_sizes): New function.
(update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
height, call xg_update_tool_bar_sizes instead.
(free_frame_tool_bar): Remove from hbox or vbox depending on
toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
(xg_change_toolbar_position): New function.
* src/gtkutil.h (xg_change_toolbar_position): Declare.
* src/window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
and FRAME_TOOLBAR_LEFT_WIDTH.
* src/xfns.c (x_set_tool_bar_position): New function.
(xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
(x_frame_parm_handlers): Add x_set_tool_bar_position.
(syms_of_xfns): if USE_GTK, provide move-toolbar.
* src/xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
* src/xterm.h (struct x_output): Add toolbar_top_height,
toolbar_bottom_height, toolbar_left_width, toolbar_right_width. Remove
toolbar_height.
if USE_GTK: Add hbox_widget and toolbar_in_hbox.
(FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
(FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
(FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
author | Jan D. <jan.h.d@swipnet.se> |
---|---|
date | Thu, 29 Jul 2010 18:49:59 +0200 |
parents | a150e8a14679 |
children | 5cb272c831e8 |
line wrap: on
line source
;;; org-entities.el --- Support for special entities in Org-mode ;; Copyright (C) 2010 Free Software Foundation, Inc. ;; Author: Carsten Dominik <carsten at orgmode dot org>, ;; Ulf Stegemann <ulf at zeitform dot de> ;; Keywords: outlines, calendar, wp ;; Homepage: http://orgmode.org ;; Version: 7.01 ;; ;; This file is part of GNU Emacs. ;; ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;;; Commentary: ;;; Code: (require 'org-macs) (declare-function org-table-align "org-table" ()) (eval-when-compile (require 'cl)) (defgroup org-entities nil "Options concerning entities in Org-mode." :tag "Org Entities" :group 'org) (defcustom org-entities-ascii-explanatory nil "Non-nil means replace special entities in ASCII. For example, this will replace \"\\nsup\" with \"[not a superset of]\" in backends where the corresponding character is not available." :group 'org-entities :type 'boolean) (defcustom org-entities-user nil "User-defined entities used in Org-mode to produce special characters. Each entry in this list is a list of strings. It associates the name of the entity that can be inserted into an Org file as \\name with the appropriate replacements for the different export backends. The order of the fields is the following name As a string, without the leading backslash LaTeX replacement In ready LaTeX, no further processing will take place LaTeX mathp A Boolean, either t or nil. t if this entity needs to be in math mode. HTML replacement In ready HTML, no further processing will take place. Usually this will be an &...; entity. ASCII replacement Plain ASCII, no extensions. Symbols that cannot be represented will be left as they are, but see the. variable `org-entities-ascii-explanatory'. Latin1 replacement Use the special characters available in latin1. utf-8 replacement Use the special characters available in utf-8. If you define new entities here that require specific LaTeX packages to be loaded, add these packages to `org-export-latex-packages-alist'." :group 'org-entities :type '(repeat (list (string :tag "name ") (string :tag "LaTeX ") (boolean :tag "Require LaTeX math?") (string :tag "HTML ") (string :tag "ASCII ") (string :tag "Latin1") (string :tag "utf-8 ")))) (defconst org-entities '( "* Letters" "** Latin" ("Agrave" "\\`{A}" nil "À" "A" "À" "À") ("agrave" "\\`{a}" nil "à" "a" "à" "à") ("Aacute" "\\'{A}" nil "Á" "A" "Á" "Á") ("aacute" "\\'{a}" nil "á" "a" "á" "á") ("Acirc" "\\^{A}" nil "Â" "A" "Â" "Â") ("acirc" "\\^{a}" nil "â" "a" "â" "â") ("Atilde" "\\~{A}" nil "Ã" "A" "Ã" "Ã") ("atilde" "\\~{a}" nil "ã" "a" "ã" "ã") ("Auml" "\\\"{A}" nil "Ä" "Ae" "Ä" "Ä") ("auml" "\\\"{a}" nil "ä" "ae" "ä" "ä") ("Aring" "\\AA{}" nil "Å" "A" "Å" "Å") ("AA" "\\AA{}" nil "Å" "A" "Å" "Å") ("aring" "\\aa{}" nil "å" "a" "å" "å") ("AElig" "\\AE{}" nil "Æ" "AE" "Æ" "Æ") ("aelig" "\\ae{}" nil "æ" "ae" "æ" "æ") ("Ccedil" "\\c{C}" nil "Ç" "C" "Ç" "Ç") ("ccedil" "\\c{c}" nil "ç" "c" "ç" "ç") ("Egrave" "\\`{E}" nil "È" "E" "È" "È") ("egrave" "\\`{e}" nil "è" "e" "è" "è") ("Eacute" "\\'{E}" nil "É" "E" "É" "É") ("eacute" "\\'{e}" nil "é" "e" "é" "é") ("Ecirc" "\\^{E}" nil "Ê" "E" "Ê" "Ê") ("ecirc" "\\^{e}" nil "ê" "e" "ê" "ê") ("Euml" "\\\"{E}" nil "Ë" "E" "Ë" "Ë") ("euml" "\\\"{e}" nil "ë" "e" "ë" "ë") ("Igrave" "\\`{I}" nil "Ì" "I" "Ì" "Ì") ("igrave" "\\`{i}" nil "ì" "i" "ì" "ì") ("Iacute" "\\'{I}" nil "Í" "I" "Í" "Í") ("iacute" "\\'{i}" nil "í" "i" "í" "í") ("Icirc" "\\^{I}" nil "Î" "I" "Î" "Î") ("icirc" "\\^{i}" nil "î" "i" "î" "î") ("Iuml" "\\\"{I}" nil "Ï" "I" "Ï" "Ï") ("iuml" "\\\"{i}" nil "ï" "i" "ï" "ï") ("Ntilde" "\\~{N}" nil "Ñ" "N" "Ñ" "Ñ") ("ntilde" "\\~{n}" nil "ñ" "n" "ñ" "ñ") ("Ograve" "\\`{O}" nil "Ò" "O" "Ò" "Ò") ("ograve" "\\`{o}" nil "ò" "o" "ò" "ò") ("Oacute" "\\'{O}" nil "Ó" "O" "Ó" "Ó") ("oacute" "\\'{o}" nil "ó" "o" "ó" "ó") ("Ocirc" "\\^{O}" nil "Ô" "O" "Ô" "Ô") ("ocirc" "\\^{o}" nil "ô" "o" "ô" "ô") ("Otilde" "\\~{O}" nil "Õ" "O" "Õ" "Õ") ("otilde" "\\~{o}" nil "õ" "o" "õ" "õ") ("Ouml" "\\\"{O}" nil "Ö" "Oe" "Ö" "Ö") ("ouml" "\\\"{o}" nil "ö" "oe" "ö" "ö") ("Oslash" "\\O" nil "Ø" "O" "Ø" "Ø") ("oslash" "\\o{}" nil "ø" "o" "ø" "ø") ("OElig" "\\OE{}" nil "Œ" "OE" "OE" "Œ") ("oelig" "\\oe{}" nil "œ" "oe" "oe" "œ") ("Scaron" "\\v{S}" nil "Š" "S" "S" "Š") ("scaron" "\\v{s}" nil "š" "s" "s" "š") ("szlig" "\\ss{}" nil "ß" "ss" "ß" "ß") ("Ugrave" "\\`{U}" nil "Ù" "U" "Ù" "Ù") ("ugrave" "\\`{u}" nil "ù" "u" "ù" "ù") ("Uacute" "\\'{U}" nil "Ú" "U" "Ú" "Ú") ("uacute" "\\'{u}" nil "ú" "u" "ú" "ú") ("Ucirc" "\\^{U}" nil "Û" "U" "Û" "Û") ("ucirc" "\\^{u}" nil "û" "u" "û" "û") ("Uuml" "\\\"{U}" nil "Ü" "Ue" "Ü" "Ü") ("uuml" "\\\"{u}" nil "ü" "ue" "ü" "ü") ("Yacute" "\\'{Y}" nil "Ý" "Y" "Ý" "Ý") ("yacute" "\\'{y}" nil "ý" "y" "ý" "ý") ("Yuml" "\\\"{Y}" nil "Ÿ" "Y" "Y" "Ÿ") ("yuml" "\\\"{y}" nil "ÿ" "y" "ÿ" "ÿ") "** Latin (special face)" ("fnof" "\\textit{f}" nil "ƒ" "f" "f" "ƒ") ("real" "\\Re" t "ℜ" "R" "R" "ℜ") ("image" "\\Im" t "ℑ" "I" "I" "ℑ") ("weierp" "\\wp" t "℘" "P" "P" "℘") "** Greek" ("Alpha" "A" nil "Α" "Alpha" "Alpha" "Α") ("alpha" "\\alpha" t "α" "alpha" "alpha" "α") ("Beta" "B" nil "Β" "Beta" "Beta" "Β") ("beta" "\\beta" t "β" "beta" "beta" "β") ("Gamma" "\\Gamma" t "Γ" "Gamma" "Gamma" "Γ") ("gamma" "\\gamma" t "γ" "gamma" "gamma" "γ") ("Delta" "\\Delta" t "Δ" "Delta" "Gamma" "Δ") ("delta" "\\delta" t "δ" "delta" "delta" "δ") ("Epsilon" "E" nil "Ε" "Epsilon" "Epsilon" "Ε") ("epsilon" "\\epsilon" t "ε" "epsilon" "epsilon" "ε") ("varepsilon" "\\varepsilon" t "ε" "varepsilon" "varepsilon" "ε") ("Zeta" "Z" nil "Ζ" "Zeta" "Zeta" "Ζ") ("zeta" "\\zeta" t "ζ" "zeta" "zeta" "ζ") ("Eta" "H" nil "Η" "Eta" "Eta" "Η") ("eta" "\\eta" t "η" "eta" "eta" "η") ("Theta" "\\Theta" t "Θ" "Theta" "Theta" "Θ") ("theta" "\\theta" t "θ" "theta" "theta" "θ") ("thetasym" "\\vartheta" t "ϑ" "theta" "theta" "ϑ") ("vartheta" "\\vartheta" t "ϑ" "theta" "theta" "ϑ") ("Iota" "I" nil "Ι" "Iota" "Iota" "Ι") ("iota" "\\iota" t "ι" "iota" "iota" "ι") ("Kappa" "K" nil "Κ" "Kappa" "Kappa" "Κ") ("kappa" "\\kappa" t "κ" "kappa" "kappa" "κ") ("Lambda" "\\Lambda" t "Λ" "Lambda" "Lambda" "Λ") ("lambda" "\\lambda" t "λ" "lambda" "lambda" "λ") ("Mu" "M" nil "Μ" "Mu" "Mu" "Μ") ("mu" "\\mu" t "μ" "mu" "mu" "μ") ("nu" "\\nu" t "ν" "nu" "nu" "ν") ("Nu" "N" nil "Ν" "Nu" "Nu" "Ν") ("Xi" "\\Xi" t "Ξ" "Xi" "Xi" "Ξ") ("xi" "\\xi" t "ξ" "xi" "xi" "ξ") ("Omicron" "O" nil "Ο" "Omicron" "Omicron" "Ο") ("omicron" "\\textit{o}" nil "ο" "omicron" "omicron" "ο") ("Pi" "\\Pi" t "Π" "Pi" "Pi" "Π") ("pi" "\\pi" t "π" "pi" "pi" "π") ("Rho" "P" nil "Ρ" "Rho" "Rho" "Ρ") ("rho" "\\rho" t "ρ" "rho" "rho" "ρ") ("Sigma" "\\Sigma" t "Σ" "Sigma" "Sigma" "Σ") ("sigma" "\\sigma" t "σ" "sigma" "sigma" "σ") ("sigmaf" "\\varsigma" t "ς" "sigmaf" "sigmaf" "ς") ("varsigma" "\\varsigma" t "ς" "varsigma" "varsigma" "ς") ("Tau" "T" nil "Τ" "Tau" "Tau" "Τ") ("Upsilon" "\\Upsilon" t "Υ" "Upsilon" "Upsilon" "Υ") ("upsih" "\\Upsilon" t "ϒ" "upsilon" "upsilon" "ϒ") ("upsilon" "\\upsilon" t "υ" "upsilon" "upsilon" "υ") ("Phi" "\\Phi" t "Φ" "Phi" "Phi" "Φ") ("phi" "\\phi" t "φ" "phi" "phi" "φ") ("Chi" "X" nil "Χ" "Chi" "Chi" "Χ") ("chi" "\\chi" t "χ" "chi" "chi" "χ") ("acutex" "\\acute x" t "´x" "'x" "'x" "𝑥́") ("Psi" "\\Psi" t "Ψ" "Psi" "Psi" "Ψ") ("psi" "\\psi" t "ψ" "psi" "psi" "ψ") ("tau" "\\tau" t "τ" "tau" "tau" "τ") ("Omega" "\\Omega" t "Ω" "Omega" "Omega" "Ω") ("omega" "\\omega" t "ω" "omega" "omega" "ω") ("piv" "\\varpi" t "ϖ" "omega-pi" "omega-pi" "ϖ") ("partial" "\\partial" t "∂" "[partial differential]" "[partial differential]" "∂") "** Hebrew" ("alefsym" "\\aleph" t "ℵ" "aleph" "aleph" "ℵ") "** Dead languages" ("ETH" "\\DH{}" nil "Ð" "D" "Ð" "Ð") ("eth" "\\dh{}" nil "ð" "dh" "ð" "ð") ("THORN" "\\TH{}" nil "Þ" "TH" "Þ" "Þ") ("thorn" "\\th{}" nil "þ" "th" "þ" "þ") "* Punctuation" "** Dots and Marks" ("dots" "\\dots{}" nil "…" "..." "..." "…") ("hellip" "\\dots{}" nil "…" "..." "..." "…") ("middot" "\\textperiodcentered{}" nil "·" "." "·" "·") ("iexcl" "!`" nil "¡" "!" "¡" "¡") ("iquest" "?`" nil "¿" "?" "¿" "¿") "** Dash-like" ("shy" "\\-" nil "­" "" "" "") ("ndash" "--" nil "–" "-" "-" "–") ("mdash" "---" nil "—" "--" "--" "—") "** Quotations" ("quot" "\\textquotedbl{}" nil """ "\"" "\"" "\"") ("acute" "\\textasciiacute{}" nil "´" "'" "´" "´") ("ldquo" "\\textquotedblleft{}" nil "“" "\"" "\"" "“") ("rdquo" "\\textquotedblright{}" nil "”" "\"" "\"" "”") ("bdquo" "\\quotedblbase{}" nil "„" "\"" "\"" "„") ("lsquo" "\\textquoteleft{}" nil "‘" "`" "`" "‘") ("rsquo" "\\textquoteright{}" nil "’" "'" "'" "’") ("sbquo" "\\quotesinglbase{}" nil "‚" "," "," "‚") ("laquo" "\\guillemotleft{}" nil "«" "<<" "«" "«") ("raquo" "\\guillemotright{}" nil "»" ">>" "»" "»") ("lsaquo" "\\guilsinglleft{}" nil "‹" "<" "<" "‹") ("rsaquo" "\\guilsinglright{}" nil "›" ">" ">" "›") "* Other" "** Misc. (often used)" ("circ" "\\circ" t "ˆ" "^" "^" "ˆ") ("vert" "\\vert{}" t "|" "|" "|" "|") ("brvbar" "\\textbrokenbar{}" nil "¦" "|" "¦" "¦") ("sect" "\\S" nil "§" "paragraph" "§" "§") ("amp" "\\&" nil "&" "&" "&" "&") ("lt" "\\textless{}" nil "<" "<" "<" "<") ("gt" "\\textgreater{}" nil ">" ">" ">" ">") ("tilde" "\\~{}" nil "˜" "~" "~" "~") ("dagger" "\\textdagger{}" nil "†" "[dagger]" "[dagger]" "†") ("Dagger" "\\textdaggerdbl{}" nil "‡" "[doubledagger]" "[doubledagger]" "‡") "** Whitespace" ("nbsp" "~" nil " " " " " " " ") ("ensp" "\\hspace*{.5em}" nil " " " " " " " ") ("emsp" "\\hspace*{1em}" nil " " " " " " " ") ("thinsp" "\\hspace*{.2em}" nil " " " " " " " ") "** Currency" ("curren" "\\textcurrency{}" nil "¤" "curr." "¤" "¤") ("cent" "\\textcent{}" nil "¢" "cent" "¢" "¢") ("pound" "\\pounds{}" nil "£" "pound" "£" "£") ("yen" "\\textyen{}" nil "¥" "yen" "¥" "¥") ("euro" "\\texteuro{}" nil "€" "EUR" "EUR" "€") ("EUR" "\\EUR{}" nil "€" "EUR" "EUR" "€") ("EURdig" "\\EURdig{}" nil "€" "EUR" "EUR" "€") ("EURhv" "\\EURhv{}" nil "€" "EUR" "EUR" "€") ("EURcr" "\\EURcr{}" nil "€" "EUR" "EUR" "€") ("EURtm" "\\EURtm{}" nil "€" "EUR" "EUR" "€") "** Property Marks" ("copy" "\\textcopyright{}" nil "©" "(c)" "©" "©") ("reg" "\\textregistered{}" nil "®" "(r)" "®" "®") ("trade" "\\texttrademark{}" nil "™" "TM" "TM" "™") "** Science et al." ("minus" "\\minus" t "−" "-" "-" "−") ("pm" "\\textpm{}" nil "±" "+-" "±" "±") ("plusmn" "\\textpm{}" nil "±" "+-" "±" "±") ("times" "\\texttimes{}" nil "×" "*" "×" "×") ("frasl" "/" nil "⁄" "/" "/" "⁄") ("div" "\\textdiv{}" nil "÷" "/" "÷" "÷") ("frac12" "\\textonehalf{}" nil "½" "1/2" "½" "½") ("frac14" "\\textonequarter{}" nil "¼" "1/4" "¼" "¼") ("frac34" "\\textthreequarters{}" nil "¾" "3/4" "¾" "¾") ("permil" "\\textperthousand{}" nil "‰" "per thousand" "per thousand" "‰") ("sup1" "\\textonesuperior{}" nil "¹" "^1" "¹" "¹") ("sup2" "\\texttwosuperior{}" nil "²" "^2" "²" "²") ("sup3" "\\textthreesuperior{}" nil "³" "^3" "³" "³") ("radic" "\\sqrt{\\,}" t "√" "[square root]" "[square root]" "√") ("sum" "\\sum" t "∑" "[sum]" "[sum]" "∑") ("prod" "\\prod" t "∏" "[product]" "[n-ary product]" "∏") ("micro" "\\textmu{}" nil "µ" "micro" "µ" "µ") ("macr" "\\textasciimacron{}" nil "¯" "[macron]" "¯" "¯") ("deg" "\\textdegree{}" nil "deg" "degree" "°" "°") ("prime" "\\prime" t "′" "'" "'" "′") ("Prime" "\\prime{}\\prime" t "″" "''" "''" "″") ("infin" "\\propto" t "∞" "[infinity]" "[infinity]" "∞") ("infty" "\\infty" t "∞" "[infinity]" "[infinity]" "∞") ("prop" "\\propto" t "∝" "[proportional to]" "[proportional to]" "∝") ("proptp" "\\propto" t "∝" "[proportional to]" "[proportional to]" "∝") ("not" "\\textlnot{}" nil "¬" "[angled dash]" "¬" "¬") ("land" "\\land" t "∧" "[logical and]" "[logical and]" "∧") ("wedge" "\\wedge" t "∧" "[logical and]" "[logical and]" "∧") ("lor" "\\lor" t "∨" "[logical or]" "[logical or]" "∨") ("vee" "\\vee" t "∨" "[logical or]" "[logical or]" "∨") ("cap" "\\cap" t "∩" "[intersection]" "[intersection]" "∩") ("cup" "\\cup" t "∪" "[union]" "[union]" "∪") ("int" "\\int" t "∫" "[integral]" "[integral]" "∫") ("there4" "\\therefore" t "∴" "[therefore]" "[therefore]" "∴") ("sim" "\\sim" t "∼" "~" "~" "∼") ("cong" "\\cong" t "≅" "[approx. equal to]" "[approx. equal to]" "≅") ("simeq" "\\simeq" t "≅" "[approx. equal to]" "[approx. equal to]" "≅") ("asymp" "\\asymp" t "≈" "[almost equal to]" "[almost equal to]" "≈") ("approx" "\\approx" t "≈" "[almost equal to]" "[almost equal to]" "≈") ("ne" "\\ne" t "≠" "[not equal to]" "[not equal to]" "≠") ("neq" "\\neq" t "≠" "[not equal to]" "[not equal to]" "≠") ("equiv" "\\equiv" t "≡" "[identical to]" "[identical to]" "≡") ("le" "\\le" t "≤" "<=" "<=" "≤") ("ge" "\\ge" t "≥" ">=" ">=" "≥") ("sub" "\\subset" t "⊂" "[subset of]" "[subset of]" "⊂") ("subset" "\\subset" t "⊂" "[subset of]" "[subset of]" "⊂") ("sup" "\\supset" t "⊃" "[superset of]" "[superset of]" "⊃") ("supset" "\\supset" t "⊃" "[superset of]" "[superset of]" "⊃") ("nsub" "\\not\\subset" t "⊄" "[not a subset of]" "[not a subset of" "⊄") ("sube" "\\subseteq" t "⊆" "[subset of or equal to]" "[subset of or equal to]" "⊆") ("nsup" "\\not\\supset" t "⊅" "[not a superset of]" "[not a superset of]" "⊅") ("supe" "\\supseteq" t "⊇" "[superset of or equal to]" "[superset of or equal to]" "⊇") ("forall" "\\forall" t "∀" "[for all]" "[for all]" "∀") ("exist" "\\exists" t "∃" "[there exists]" "[there exists]" "∃") ("exists" "\\exists" t "∃" "[there exists]" "[there exists]" "∃") ("empty" "\\empty" t "∅" "[empty set]" "[empty set]" "∅") ("emptyset" "\\emptyset" t "∅" "[empty set]" "[empty set]" "∅") ("isin" "\\in" t "∈" "[element of]" "[element of]" "∈") ("in" "\\in" t "∈" "[element of]" "[element of]" "∈") ("notin" "\\notin" t "∉" "[not an element of]" "[not an element of]" "∉") ("ni" "\\ni" t "∋" "[contains as member]" "[contains as member]" "∋") ("nabla" "\\nabla" t "∇" "[nabla]" "[nabla]" "∇") ("ang" "\\angle" t "∠" "[angle]" "[angle]" "∠") ("angle" "\\angle" t "∠" "[angle]" "[angle]" "∠") ("perp" "\\perp" t "⊥" "[up tack]" "[up tack]" "⊥") ("sdot" "\\cdot" t "⋅" "[dot]" "[dot]" "⋅") ("cdot" "\\cdot" t "⋅" "[dot]" "[dot]" "⋅") ("lceil" "\\lceil" t "⌈" "[left ceiling]" "[left ceiling]" "⌈") ("rceil" "\\rceil" t "⌉" "[right ceiling]" "[right ceiling]" "⌉") ("lfloor" "\\lfloor" t "⌊" "[left floor]" "[left floor]" "⌊") ("rfloor" "\\rfloor" t "⌋" "[right floor]" "[right floor]" "⌋") ("lang" "\\langle" t "⟨" "<" "<" "⟨") ("rang" "\\rangle" t "⟩" ">" ">" "⟩") "** Arrows" ("larr" "\\leftarrow" t "←" "<-" "<-" "←") ("leftarrow" "\\leftarrow" t "←" "<-" "<-" "←") ("gets" "\\gets" t "←" "<-" "<-" "←") ("lArr" "\\Leftarrow" t "⇐" "<=" "<=" "⇐") ("Leftarrow" "\\Leftarrow" t "⇐" "<=" "<=" "⇐") ("uarr" "\\uparrow" t "↑" "[uparrow]" "[uparrow]" "↑") ("uparrow" "\\uparrow" t "↑" "[uparrow]" "[uparrow]" "↑") ("uArr" "\\Uparrow" t "⇑" "[dbluparrow]" "[dbluparrow]" "⇑") ("Uparrow" "\\Uparrow" t "⇑" "[dbluparrow]" "[dbluparrow]" "⇑") ("rarr" "\\rightarrow" t "→" "->" "->" "→") ("to" "\\to" t "→" "->" "->" "→") ("rightarrow" "\\rightarrow" t "→" "->" "->" "→") ("rArr" "\\Rightarrow" t "⇒" "=>" "=>" "⇒") ("Rightarrow" "\\Rightarrow" t "⇒" "=>" "=>" "⇒") ("darr" "\\downarrow" t "↓" "[downarrow]" "[downarrow]" "↓") ("downarrow" "\\downarrow" t "↓" "[downarrow]" "[downarrow]" "↓") ("dArr" "\\Downarrow" t "⇓" "[dbldownarrow]" "[dbldownarrow]" "⇓") ("Downarrow" "\\Downarrow" t "⇓" "[dbldownarrow]" "[dbldownarrow]" "⇓") ("harr" "\\leftrightarrow" t "↔" "<->" "<->" "↔") ("leftrightarrow" "\\leftrightarrow" t "↔" "<->" "<->" "↔") ("hArr" "\\Leftrightarrow" t "⇔" "<=>" "<=>" "⇔") ("Leftrightarrow" "\\Leftrightarrow" t "⇔" "<=>" "<=>" "⇔") ("crarr" "\\hookleftarrow" t "↵" "<-'" "<-'" "↵") ("hookleftarrow" "\\hookleftarrow" t "↵" "<-'" "<-'" "↵") "** Function names" ("arccos" "\\arccos" t "arccos" "arccos" "arccos" "arccos") ("arcsin" "\\arcsin" t "arcsin" "arcsin" "arcsin" "arcsin") ("arctan" "\\arctan" t "arctan" "arctan" "arctan" "arctan") ("arg" "\\arg" t "arg" "arg" "arg" "arg") ("cos" "\\cos" t "cos" "cos" "cos" "cos") ("cosh" "\\cosh" t "cosh" "cosh" "cosh" "cosh") ("cot" "\\cot" t "cot" "cot" "cot" "cot") ("coth" "\\coth" t "coth" "coth" "coth" "coth") ("csc" "\\csc" t "csc" "csc" "csc" "csc") ("deg" "\\deg" t "°" "deg" "deg" "deg") ("det" "\\det" t "det" "det" "det" "det") ("dim" "\\dim" t "dim" "dim" "dim" "dim") ("exp" "\\exp" t "exp" "exp" "exp" "exp") ("gcd" "\\gcd" t "gcd" "gcd" "gcd" "gcd") ("hom" "\\hom" t "hom" "hom" "hom" "hom") ("inf" "\\inf" t "inf" "inf" "inf" "inf") ("ker" "\\ker" t "ker" "ker" "ker" "ker") ("lg" "\\lg" t "lg" "lg" "lg" "lg") ("lim" "\\lim" t "lim" "lim" "lim" "lim") ("liminf" "\\liminf" t "liminf" "liminf" "liminf" "liminf") ("limsup" "\\limsup" t "limsup" "limsup" "limsup" "limsup") ("ln" "\\ln" t "ln" "ln" "ln" "ln") ("log" "\\log" t "log" "log" "log" "log") ("max" "\\max" t "max" "max" "max" "max") ("min" "\\min" t "min" "min" "min" "min") ("Pr" "\\Pr" t "Pr" "Pr" "Pr" "Pr") ("sec" "\\sec" t "sec" "sec" "sec" "sec") ("sin" "\\sin" t "sin" "sin" "sin" "sin") ("sinh" "\\sinh" t "sinh" "sinh" "sinh" "sinh") ("sup" "\\sup" t "⊃" "sup" "sup" "sup") ("tan" "\\tan" t "tan" "tan" "tan" "tan") ("tanh" "\\tanh" t "tanh" "tanh" "tanh" "tanh") "** Signs & Symbols" ("bull" "\\textbullet{}" nil "•" "*" "*" "•") ("bullet" "\\textbullet{}" nil "•" "*" "*" "•") ("star" "\\star" t "*" "*" "*" "⋆") ("lowast" "\\ast" t "∗" "*" "*" "∗") ("ast" "\\ast" t "∗" "*" "*" "*") ("odot" "\\odot" t "o" "[circled dot]" "[circled dot]" "ʘ") ("oplus" "\\oplus" t "⊕" "[circled plus]" "[circled plus]" "⊕") ("otimes" "\\otimes" t "⊗" "[circled times]" "[circled times]" "⊗") ("checkmark" "\\checkmark" t "✓" "[checkmark]" "[checkmark]" "✓") "** Miscellaneous (seldom used)" ("para" "\\P{}" nil "¶" "[pilcrow]" "¶" "¶") ("ordf" "\\textordfeminine{}" nil "ª" "_a_" "ª" "ª") ("ordm" "\\textordmasculine{}" nil "º" "_o_" "º" "º") ("cedil" "\\c{}" nil "¸" "[cedilla]" "¸" "¸") ("oline" "\\overline{~}" t "‾" "[overline]" "¯" "‾") ("uml" "\\textasciidieresis{}" nil "¨" "[diaeresis]" "¨" "¨") ("zwnj" "\\/{}" nil "‌" "" "" "") ("zwj" "" nil "‍" "" "" "") ("lrm" "" nil "‎" "" "" "") ("rlm" "" nil "‏" "" "" "") "** Smilies" ("smile" "\\smile" t "☺" ":-)" ":-)" "⌣") ("smiley" "\\smiley{}" nil "☺" ":-)" ":-)" "☺") ("blacksmile" "\\blacksmiley{}" nil "☻" ":-)" ":-)" "☻") ("sad" "\\frownie{}" nil "☹" ":-(" ":-(" "☹") "** Suits" ("clubs" "\\clubsuit" t "♣" "[clubs]" "[clubs]" "♣") ("clubsuit" "\\clubsuit" t "♣" "[clubs]" "[clubs]" "♣") ("spades" "\\spadesuit" t "♠" "[spades]" "[spades]" "♠") ("spadesuit" "\\spadesuit" t "♠" "[spades]" "[spades]" "♠") ("hearts" "\\heartsuit" t "♥" "[hearts]" "[hearts]" "♥") ("heartsuit" "\\heartsuit" t "♥" "[hearts]" "[hearts]" "♥") ("diams" "\\diamondsuit" t "♦" "[diamonds]" "[diamonds]" "♦") ("diamondsuit" "\\diamondsuit" t "♦" "[diamonds]" "[diamonds]" "♦") ("Diamond" "\\diamond" t "⋄" "[diamond]" "[diamond]" "⋄") ("loz" "\\diamond" t "◊" "[lozenge]" "[lozenge]" "◊") ) "Default entities used in Org-mode to produce special characters. For details see `org-entities-user'.") (defsubst org-entity-get (name) "Get the proper association for NAME from the entity lists. This first checks the user list, then the built-in list." (or (assoc name org-entities-user) (assoc name org-entities))) (defun org-entity-get-representation (name kind) "Get the correct representation of entity NAME for export type KIND. Kind can be any of `latex', `html', `ascii', `latin1', or `utf8'." (let* ((e (org-entity-get name)) (n (cdr (assq kind '((latex . 1) (html . 3) (ascii . 4) (latin1 . 5) (utf8 . 6))))) (r (and e n (nth n e)))) (if (and e r (not org-entities-ascii-explanatory) (memq kind '(ascii latin1 utf8)) (= (string-to-char r) ?\[)) (concat "\\" name) r))) (defsubst org-entity-latex-math-p (name) "Does entity NAME require math mode in LaTeX?" (nth 2 (org-entity-get name))) ;; Helpfunctions to create a table for orgmode.org/worg/org-symbols.org (defun org-entities-create-table () "Create an org-mode table with all entities." (interactive) (let ((ll org-entities) (pos (point)) e latex mathp html latin utf8 name ascii) (insert "|Name|LaTeX code|LaTeX|HTML code |HTML|ASCII|Latin1|UTF-8\n|-\n") (while ll (when (listp e) (setq e (pop ll)) (setq name (car e) latex (nth 1 e) mathp (nth 2 e) html (nth 3 e) ascii (nth 4 e) latin (nth 5 e) utf8 (nth 6 e)) (if (equal ascii "|") (setq ascii "\\vert")) (if (equal latin "|") (setq latin "\\vert")) (if (equal utf8 "|") (setq utf8 "\\vert")) (if (equal ascii "=>") (setq ascii "= >")) (if (equal latin "=>") (setq latin "= >")) (insert "|" name "|" (format "=%s=" latex) "|" (format (if mathp "$%s$" "$\\mbox{%s}$") latex) "|" (format "=%s=" html) "|" html "|" ascii "|" latin "|" utf8 "|\n"))) (goto-char pos) (org-table-align))) (defun org-entities-help () "Create a Help buffer with all available entities." (interactive) (with-output-to-temp-buffer "*Org Entity Help*" (princ "Org-mode entities\n=================\n\n") (let ((ll (append '("* User-defined additions (variable org-entities-user)") org-entities-user org-entities)) e latex mathp html latin utf8 name ascii (lastwasstring t) (head (concat "\n" " Symbol Org entity LaTeX code HTML code\n" " -----------------------------------------------------------\n"))) (while ll (setq e (pop ll)) (if (stringp e) (progn (princ e) (princ "\n") (setq lastwasstring t)) (if lastwasstring (princ head)) (setq lastwasstring nil) (setq name (car e) latex (nth 1 e) html (nth 3 e) utf8 (nth 6 e)) (princ (format " %-8s \\%-16s %-22s %-13s\n" utf8 name latex html)))))) (with-current-buffer "*Org Entity Help*" (org-mode)) (select-window (get-buffer-window "*Org Entity Help*"))) (defun replace-amp () "Postprocess HTML file to unescape the ampersand." (interactive) (while (re-search-forward "<td>&\\([^<;]+;\\)" nil t) (replace-match (concat "<td>&" (match-string 1)) t t))) (provide 'org-entities) ;; Local variables: ;; coding: utf-8 ;; End: ;; arch-tag: e6bd163f-7419-4009-9c93-a74623016424 ;;; org-entities.el ends here