-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export ∆ (\increment) and ∑ (\sum) as aliases of Laplacian() and sum() #761
base: master
Are you sure you want to change the base?
Conversation
For \increment vs. \Delta, see the discussion at https://tex.stackexchange.com/questions/76553/correct-symbol-for-the-laplace-operator-delta.
It is already re-exported from ApproxFun by @reexport.
Codecov Report
@@ Coverage Diff @@
## master #761 +/- ##
==========================================
+ Coverage 30.28% 30.40% +0.12%
==========================================
Files 15 15
Lines 809 809
==========================================
+ Hits 245 246 +1
+ Misses 564 563 -1
Continue to review full report at Codecov.
|
Note this is a breaking change so you should bump the minor version |
The visual similarity between |
This PR exports
∆
and∑
as aliases ofLaplacian()
andsum()
.Note that these symbols are entered by
\increment
and\sum
, and different fromΔ
(\Delta
) andΣ
(\Sigma
) that are more commonly used as variable names. Therefore, exporting these symbols do not clutter the namespace.This PR fixes #760. Once this PR is merged, the documentation mentioning
Δ
(\Delta
) as an alias forLaplacian()
should be updated with∆
(\increment
).