Equation involving exp, sin, cos and Greek letters [closed]
How would I write this equation in LaTeX?
math-mode
closed as too broad by Bobyandbob, Phelype Oleinik, Circumscribe, dexteritas, TeXnician Jan 11 at 13:03
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
How would I write this equation in LaTeX?
math-mode
closed as too broad by Bobyandbob, Phelype Oleinik, Circumscribe, dexteritas, TeXnician Jan 11 at 13:03
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
5
Welcome to TeX.SX! I hope you don't want to write the equation as it is shown in the screenshot, because it contains some typographically questionable (some might say wrong) constructs. Functions like "exp", "sin" and "cos", should be typeset in upright shape: In LaTeX that happens withexp
,sin
andcos
. 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 at 9:12
1
I suggest you have a look at an introduction to mathematical writing in LaTeX (and possibly a general LaTeX introduction). Equations like this should be covered there. See for example tex.stackexchange.com/q/11/35864, tex.stackexchange.com/q/84384/35864, tex.stackexchange.com/q/4420/35864, and linked questions.
– moewe
Jan 11 at 9:16
add a comment |
How would I write this equation in LaTeX?
math-mode
How would I write this equation in LaTeX?
math-mode
math-mode
edited Jan 11 at 9:12
moewe
88.2k9110338
88.2k9110338
asked Jan 11 at 9:10
Erty ErtyErty Erty
1
1
closed as too broad by Bobyandbob, Phelype Oleinik, Circumscribe, dexteritas, TeXnician Jan 11 at 13:03
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as too broad by Bobyandbob, Phelype Oleinik, Circumscribe, dexteritas, TeXnician Jan 11 at 13:03
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
5
Welcome to TeX.SX! I hope you don't want to write the equation as it is shown in the screenshot, because it contains some typographically questionable (some might say wrong) constructs. Functions like "exp", "sin" and "cos", should be typeset in upright shape: In LaTeX that happens withexp
,sin
andcos
. 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 at 9:12
1
I suggest you have a look at an introduction to mathematical writing in LaTeX (and possibly a general LaTeX introduction). Equations like this should be covered there. See for example tex.stackexchange.com/q/11/35864, tex.stackexchange.com/q/84384/35864, tex.stackexchange.com/q/4420/35864, and linked questions.
– moewe
Jan 11 at 9:16
add a comment |
5
Welcome to TeX.SX! I hope you don't want to write the equation as it is shown in the screenshot, because it contains some typographically questionable (some might say wrong) constructs. Functions like "exp", "sin" and "cos", should be typeset in upright shape: In LaTeX that happens withexp
,sin
andcos
. 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 at 9:12
1
I suggest you have a look at an introduction to mathematical writing in LaTeX (and possibly a general LaTeX introduction). Equations like this should be covered there. See for example tex.stackexchange.com/q/11/35864, tex.stackexchange.com/q/84384/35864, tex.stackexchange.com/q/4420/35864, and linked questions.
– moewe
Jan 11 at 9:16
5
5
Welcome to TeX.SX! I hope you don't want to write the equation as it is shown in the screenshot, because it contains some typographically questionable (some might say wrong) constructs. Functions like "exp", "sin" and "cos", should be typeset in upright shape: In LaTeX that happens with
exp
, sin
and 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 at 9:12
Welcome to TeX.SX! I hope you don't want to write the equation as it is shown in the screenshot, because it contains some typographically questionable (some might say wrong) constructs. Functions like "exp", "sin" and "cos", should be typeset in upright shape: In LaTeX that happens with
exp
, sin
and 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 at 9:12
1
1
I suggest you have a look at an introduction to mathematical writing in LaTeX (and possibly a general LaTeX introduction). Equations like this should be covered there. See for example tex.stackexchange.com/q/11/35864, tex.stackexchange.com/q/84384/35864, tex.stackexchange.com/q/4420/35864, and linked questions.
– moewe
Jan 11 at 9:16
I suggest you have a look at an introduction to mathematical writing in LaTeX (and possibly a general LaTeX introduction). Equations like this should be covered there. See for example tex.stackexchange.com/q/11/35864, tex.stackexchange.com/q/84384/35864, tex.stackexchange.com/q/4420/35864, and linked questions.
– moewe
Jan 11 at 9:16
add a comment |
1 Answer
1
active
oldest
votes
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_{lambdathetapsisigmagamma}(x,y)=expleft(-frac{x'^2+gamma^2y'^2}{2sigma^2}right)cosleft(2pifrac{x'}{lambda}+psiright)]
and
begin{align*}
x'&=xcos(theta)+ysin(theta)\
y'&=ycos(theta)-xsin(theta)
end{align*}
end{document}
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
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_{lambdathetapsisigmagamma}(x,y)=expleft(-frac{x'^2+gamma^2y'^2}{2sigma^2}right)cosleft(2pifrac{x'}{lambda}+psiright)]
and
begin{align*}
x'&=xcos(theta)+ysin(theta)\
y'&=ycos(theta)-xsin(theta)
end{align*}
end{document}
add a comment |
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_{lambdathetapsisigmagamma}(x,y)=expleft(-frac{x'^2+gamma^2y'^2}{2sigma^2}right)cosleft(2pifrac{x'}{lambda}+psiright)]
and
begin{align*}
x'&=xcos(theta)+ysin(theta)\
y'&=ycos(theta)-xsin(theta)
end{align*}
end{document}
add a comment |
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_{lambdathetapsisigmagamma}(x,y)=expleft(-frac{x'^2+gamma^2y'^2}{2sigma^2}right)cosleft(2pifrac{x'}{lambda}+psiright)]
and
begin{align*}
x'&=xcos(theta)+ysin(theta)\
y'&=ycos(theta)-xsin(theta)
end{align*}
end{document}
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_{lambdathetapsisigmagamma}(x,y)=expleft(-frac{x'^2+gamma^2y'^2}{2sigma^2}right)cosleft(2pifrac{x'}{lambda}+psiright)]
and
begin{align*}
x'&=xcos(theta)+ysin(theta)\
y'&=ycos(theta)-xsin(theta)
end{align*}
end{document}
answered Jan 11 at 10:18
JouleVJouleV
2,344628
2,344628
add a comment |
add a comment |
5
Welcome to TeX.SX! I hope you don't want to write the equation as it is shown in the screenshot, because it contains some typographically questionable (some might say wrong) constructs. Functions like "exp", "sin" and "cos", should be typeset in upright shape: In LaTeX that happens with
exp
,sin
andcos
. 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 at 9:12
1
I suggest you have a look at an introduction to mathematical writing in LaTeX (and possibly a general LaTeX introduction). Equations like this should be covered there. See for example tex.stackexchange.com/q/11/35864, tex.stackexchange.com/q/84384/35864, tex.stackexchange.com/q/4420/35864, and linked questions.
– moewe
Jan 11 at 9:16