snippet for \coloneqq #3

Closed
vqhuy wants to merge 1 commits from master into master
vqhuy commented 2020-10-23 11:04:09 +00:00 (Migrated from github.com)
No description provided.
tecosaur commented 2020-10-23 11:08:50 +00:00 (Migrated from github.com)

My only concern with this is that it requires a package like mathtools be used. Perhaps it could be a good idea to split extra non-plain-latex functionality into subsets that can be left in or out with a user-variable. Something like:

(defvar laas-extra-packages '(amssymb mathtools etc))
My only concern with this is that it requires a package like `mathtools` be used. Perhaps it could be a good idea to split extra non-plain-latex functionality into subsets that can be left in or out with a user-variable. Something like: ```lisp (defvar laas-extra-packages '(amssymb mathtools etc)) ```
ymarco commented 2021-02-17 16:25:46 +00:00 (Migrated from github.com)

Better yet would be to use a condition that checks if mathtools is loaded:

   :cond (lambda () (member "mathtools" TeX-active-styles))

This works for latex, but I'm not sure what to do in Org-mode.

Better yet would be to use a condition that checks if mathtools is loaded: ```lisp :cond (lambda () (member "mathtools" TeX-active-styles)) ``` This works for latex, but I'm not sure what to do in Org-mode.

Pull request closed

Sign in to join this conversation.
No description provided.