#LaTeX Docs
1 messages · Page 1 of 1 (latest)
https://en.wikibooks.org/wiki/LaTeX/Mathematics
https://en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics
https://en.wikibooks.org/wiki/LaTeX/Theorems
to start off with
One of the greatest motivating forces for Donald Knuth when he began developing the original TeX system was to create something that allowed simple construction of mathematical formulae, while looking professional when printed. The fact that he succeeded was most probably why TeX (and later on, LaTeX) became so popular within the scientific comm...
This page outlines some more advanced uses of mathematics markup using LaTeX. In particular it makes heavy use of the AMS-LaTeX packages supplied by the American Mathematical Society.
With "theorem" we can mean any kind of labelled enunciation that we want to look separated from the rest of the text and with sequential numbers next to it. This approach is commonly used for theorems in mathematics, but can be used for anything. LaTeX provides a command that will let you easily define any theorem-like enunciation.
TeXit's support reaches as far as the packages you load in your custom preamble are supported by pdfLaTeX engine
and so long as they reside in TeXLive 2020
You can also create your own custom macros that may be used in a mathematical context
\newcommand{\myderivative}[1]{\ensuremath{\mathrm{d}#1}}
\[\int x \myderivative{x} \]
A really basic example