Created
July 8, 2017 15:02
-
-
Save awareness481/a1be0fb9b3a91eb78b6a4c1805da1f9f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "\\frac{num}{den}", | |
"description": "Create a fraction. The num stands for numerator and den for denominator" | |
}, | |
{ | |
"key": "\\dfrac{num}{den}", | |
"description": "Fraction in display mode" | |
}, | |
{ | |
"key": "\\sqrt[n]{x}", | |
"description": "The mathematical symbol for square roots. Omit the '[n]' if you just want the square root. Otherwise use it to specify the nth root" | |
}, | |
{ | |
"key": "\\sum_{i=m}^{n}", | |
"description": "Use this for sums (or summation). It uses the summation symbol Σ." | |
}, | |
{ | |
"key": "\\prod_{n=1}^5", | |
"description": "Uses the Pi(Π) notation. Stands for the product of a sequence of terms" | |
}, | |
{ | |
"key": "\\lim_{x\\to\\n}", | |
"description": "Produces a limit. Use x\\to\\n to specify where the value of x tends" | |
}, | |
{ | |
"key": "\\log_n x^2", | |
"description": "Produces a logarithm. Use n to specify the base. For natular logarithms use \\ln" | |
}, | |
{ | |
"key": "\\ln x", | |
"description": "Natular logarithm. ln has a base e" | |
}, | |
{ | |
"key": "\\binom{n}{k}", | |
"description": "Creates a binomial coefficient in the form of 'n choose k'" | |
}, | |
{ | |
"key": "\\cos x", | |
"description": "Trigonometric function cos (cosine)" | |
}, | |
{ | |
"key": "\\sin x", | |
"description": "Trigonometric function sin (sine)" | |
}, | |
{ | |
"key": "\\tan x", | |
"description": "Trigonometric function tan (tangent)" | |
}, | |
{ | |
"key": "\\sec x", | |
"description": "Trigonometric function sec (secant)" | |
}, | |
{ | |
"key": "\\cot x", | |
"description": "Trigonometric function cot (cotangent)" | |
}, | |
{ | |
"key": "\\csc x", | |
"description": "Trigonometric function csc (cosecant)" | |
}, | |
{ | |
"key": "\\arccos x", | |
"description": "The inverse trigonometric function of cos, arccos (arcosine)" | |
}, | |
{ | |
"key": "\\arcsin x", | |
"description": "The inverse trigonometric function of sin, arcsin (arcsine)" | |
}, | |
{ | |
"key": "\\arctan x", | |
"description": "The inverse trigonometric function of tan, arctan (arctangent)" | |
}, | |
{ | |
"key": "\\frac{d}{dx}\\left(x^2\\right) = 2x", | |
"description": "The Leibniz notation for the derivative in Calculus" | |
}, | |
{ | |
"key": "\\int 2x\\,dx = x^2+C", | |
"description": "The command to create an integral" | |
}, | |
{ | |
"key": "\\alpha", | |
"description": "Greek letter for α \u0001\n" | |
}, | |
{ | |
"key": "\\beta", | |
"description": "Greek letter for β\n" | |
}, | |
{ | |
"key": "\\gamma", | |
"description": "Greek letter for γ\n" | |
}, | |
{ | |
"key": "\\delta", | |
"description": "Greek letter for δ\n" | |
}, | |
{ | |
"key": "\\varepsilon", | |
"description": "Greek letter for ε\n" | |
}, | |
{ | |
"key": "\\zeta", | |
"description": "Greek letter for ζ\n" | |
}, | |
{ | |
"key": "\\eta", | |
"description": "Greek letter for η\b\n" | |
}, | |
{ | |
"key": "\\theta", | |
"description": "Greek letter for θ\n" | |
}, | |
{ | |
"key": "\\iota", | |
"description": "Greek letter for ι\n" | |
}, | |
{ | |
"key": "\\kappa", | |
"description": "Greek letter for κ\f\n" | |
}, | |
{ | |
"key": "\\lambda", | |
"description": "Greek letter for λ\n" | |
}, | |
{ | |
"key": "\\mu", | |
"description": "Greek letter for μ\n" | |
}, | |
{ | |
"key": "\\nu", | |
"description": "Greek letter for νι\n" | |
}, | |
{ | |
"key": "\\xi", | |
"description": "Greek letter for χι\u0010\n" | |
}, | |
{ | |
"key": "o", | |
"description": "Greek letter for Ο\n" | |
}, | |
{ | |
"key": "\\pi", | |
"description": "Greek letter for π\n" | |
}, | |
{ | |
"key": "\\rho", | |
"description": "Greek letter for ρ\u0014\n" | |
}, | |
{ | |
"key": "\\sigma", | |
"description": "Greek letter for σ\n" | |
}, | |
{ | |
"key": "\\tau", | |
"description": "Greek letter for τ\u0018\n" | |
}, | |
{ | |
"key": "\\upsilon", | |
"description": "Greek letter for υ\n" | |
}, | |
{ | |
"key": "\\phi", | |
"description": "Greek letter for φ\n" | |
}, | |
{ | |
"key": "\\chi", | |
"description": "Greek letter for χ\n" | |
}, | |
{ | |
"key": "\\psi", | |
"description": "Greek letter for \u001dψ\n" | |
}, | |
{ | |
"key": "\\omega", | |
"description": "Greek letter for ω\u001e\n" | |
}, | |
{ | |
"key": "\\leq", | |
"description": "Less or equal relation symbol" | |
}, | |
{ | |
"key": "\\geq", | |
"description": "Greater or equal relation symbol" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment