How would I write this equation in LaTeX?
Asked
Active
Viewed 1,361 times
1 Answers
3
Welcome! To have the command for each symbol, you can search for it on the Internet. This list (and many others) provides a sufficient number of symbols you need to make a mathematical document.
Using the commands to form an equation in your document is very simple and basic. You just have to read a basic LaTeX book. LaTeX for complete novices is my recommendation.
Okay, here is your equation:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
We have
\[g_{\lambda\theta\psi\sigma\gamma}(x,y)=\exp\left(-\frac{x'^2+\gamma^2y'^2}{2\sigma^2}\right)\cos\left(2\pi\frac{x'}{\lambda}+\psi\right)\]
and
\begin{align*}
x'&=x\cos(\theta)+y\sin(\theta)\\
y'&=y\cos(\theta)-x\sin(\theta)
\end{align*}
\end{document}


\exp,\sinand\cos. You may also want to either decrease the size of your fractions (probably not) or increase the size of the fences/parentheses around them. – moewe Jan 11 '19 at 09:12