1
0
Fork 0

feat(emacs): configure latex math symbols bindings

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2023-10-23 23:07:31 -04:00
parent 6237d9214b
commit a1ad9923a6
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -31,5 +31,15 @@
(add-hook 'LaTeX-mode-hook #'configure-latex)
(setq cdlatex-math-symbol-alist
'((?I ("\\int" "\\Im"))
(?0 ("\\varnothing" "\\emptyset"))
(?- ("\\not" "\\neg"))
(?+ ("\\cup" "\\cap"))
(?{ ("\\subset" "\\subseteq"))
(?} ("\\supset" "\\supseteq"))
(?. ("\\cdot" "\\cdots" "\\ldots"))
(?# ("\\mathbb" "\\mathcal"))))
(provide 'latexconfig)
;;; latexconfig.el ends here