Equation - space label
up vote
3
down vote
favorite
How to make a bigger space between equation and its number? Thank you.
begin{document}
begin{equation}label{apsidalni}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
end{equation}
end{document}
equations
add a comment |
up vote
3
down vote
favorite
How to make a bigger space between equation and its number? Thank you.
begin{document}
begin{equation}label{apsidalni}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
end{equation}
end{document}
equations
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
How to make a bigger space between equation and its number? Thank you.
begin{document}
begin{equation}label{apsidalni}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
end{equation}
end{document}
equations
How to make a bigger space between equation and its number? Thank you.
begin{document}
begin{equation}label{apsidalni}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
end{equation}
end{document}
equations
equations
asked 17 hours ago
Elisabeth
3596
3596
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
Here are a few suggestions. You can move down the equation number by adding an invisible object, here rule[-36pt]{0pt}{36pt}
({0pt}{0pt}
means zero width and height, but the optional value -36pt
tells TeX to move down the invisible rule by the stated amount); of course 36pt is exaggerated, use a smaller value.
On the other hand, splitting the equation seems better, so I add a couple of ways for it.
documentclass[a4paper]{article}
usepackage[left=4cm,right=4cm]{geometry}
usepackage{amsmath}
usepackage[nopar]{lipsum} % for context
numberwithin{equation}{section}
begin{document}
setcounter{section}{3}setcounter{equation}{21}
lipsum[4][1-5]
begin{equation}label{apsidalni}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
end{equation}
lipsum[4][1-5]
begin{equation}label{apsidalni-lowered}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
rule[-36pt]{0pt}{0pt}
end{equation}
lipsum[4][1-5]
begin{multline}label{apsidalni-multline}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5
\
+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
lipsum[4][1-5]
begingroup
addtolength{multlinegap}{4em}
begin{multline}label{apsidalni-multline-gap}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5
\
+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
endgroup
lipsum[4][1-5]
end{document}
Here I guessed the text width based on your image.
add a comment |
up vote
4
down vote
Here are three ways: either you split the equation on two lines (with multline
or with a nested aligned
), or you use the medmath
command, from nccmath
, which makes its argument about 80 % of displaysize.
Also, if you don't use margin notes, you can have more decent margins just loading the geometry
package.
documentclass{article}
usepackage{mathtools, nccmath}
usepackage{showframe}
renewcommand{ShowFrameLinethickness}{0.3pt}
begin{document}
begin{multline}label{apsidalni}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5 \
+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
bigskip
begin{equation}label{apsidalni-1}
begin{aligned}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e) & + (1+q)g(e,1))r_1^5 \
& + k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{aligned}
end{equation}
bigskip
begin{equation}label{apsidalni-2}
omega_c = medmath{frac{360}{P} biggl[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5 \
+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]}
end{equation}
end{document}
1
You could also mention theraisetag
command (see section 3.8 of the manual of theamsmath
package), which does exactly what the OP asked for, nothing more, nothing less.
– GuM
17 hours ago
1
You can't useraisetag
for a single line equation – the label would be messed up with the equation.
– Bernard
16 hours ago
Yes, I knew that: admittedly, my comment was ambiguous. I meant to suggest that you mentionedraisetag
in connection with themultline
environment, and the other environments thatamsmath
provides for groups of displayed equations. And before you object: yes, even in these environments,raisetag
is not effective if the equation number fits in the same line as the equation… ;-)
– GuM
12 hours ago
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Here are a few suggestions. You can move down the equation number by adding an invisible object, here rule[-36pt]{0pt}{36pt}
({0pt}{0pt}
means zero width and height, but the optional value -36pt
tells TeX to move down the invisible rule by the stated amount); of course 36pt is exaggerated, use a smaller value.
On the other hand, splitting the equation seems better, so I add a couple of ways for it.
documentclass[a4paper]{article}
usepackage[left=4cm,right=4cm]{geometry}
usepackage{amsmath}
usepackage[nopar]{lipsum} % for context
numberwithin{equation}{section}
begin{document}
setcounter{section}{3}setcounter{equation}{21}
lipsum[4][1-5]
begin{equation}label{apsidalni}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
end{equation}
lipsum[4][1-5]
begin{equation}label{apsidalni-lowered}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
rule[-36pt]{0pt}{0pt}
end{equation}
lipsum[4][1-5]
begin{multline}label{apsidalni-multline}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5
\
+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
lipsum[4][1-5]
begingroup
addtolength{multlinegap}{4em}
begin{multline}label{apsidalni-multline-gap}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5
\
+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
endgroup
lipsum[4][1-5]
end{document}
Here I guessed the text width based on your image.
add a comment |
up vote
4
down vote
accepted
Here are a few suggestions. You can move down the equation number by adding an invisible object, here rule[-36pt]{0pt}{36pt}
({0pt}{0pt}
means zero width and height, but the optional value -36pt
tells TeX to move down the invisible rule by the stated amount); of course 36pt is exaggerated, use a smaller value.
On the other hand, splitting the equation seems better, so I add a couple of ways for it.
documentclass[a4paper]{article}
usepackage[left=4cm,right=4cm]{geometry}
usepackage{amsmath}
usepackage[nopar]{lipsum} % for context
numberwithin{equation}{section}
begin{document}
setcounter{section}{3}setcounter{equation}{21}
lipsum[4][1-5]
begin{equation}label{apsidalni}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
end{equation}
lipsum[4][1-5]
begin{equation}label{apsidalni-lowered}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
rule[-36pt]{0pt}{0pt}
end{equation}
lipsum[4][1-5]
begin{multline}label{apsidalni-multline}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5
\
+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
lipsum[4][1-5]
begingroup
addtolength{multlinegap}{4em}
begin{multline}label{apsidalni-multline-gap}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5
\
+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
endgroup
lipsum[4][1-5]
end{document}
Here I guessed the text width based on your image.
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Here are a few suggestions. You can move down the equation number by adding an invisible object, here rule[-36pt]{0pt}{36pt}
({0pt}{0pt}
means zero width and height, but the optional value -36pt
tells TeX to move down the invisible rule by the stated amount); of course 36pt is exaggerated, use a smaller value.
On the other hand, splitting the equation seems better, so I add a couple of ways for it.
documentclass[a4paper]{article}
usepackage[left=4cm,right=4cm]{geometry}
usepackage{amsmath}
usepackage[nopar]{lipsum} % for context
numberwithin{equation}{section}
begin{document}
setcounter{section}{3}setcounter{equation}{21}
lipsum[4][1-5]
begin{equation}label{apsidalni}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
end{equation}
lipsum[4][1-5]
begin{equation}label{apsidalni-lowered}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
rule[-36pt]{0pt}{0pt}
end{equation}
lipsum[4][1-5]
begin{multline}label{apsidalni-multline}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5
\
+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
lipsum[4][1-5]
begingroup
addtolength{multlinegap}{4em}
begin{multline}label{apsidalni-multline-gap}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5
\
+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
endgroup
lipsum[4][1-5]
end{document}
Here I guessed the text width based on your image.
Here are a few suggestions. You can move down the equation number by adding an invisible object, here rule[-36pt]{0pt}{36pt}
({0pt}{0pt}
means zero width and height, but the optional value -36pt
tells TeX to move down the invisible rule by the stated amount); of course 36pt is exaggerated, use a smaller value.
On the other hand, splitting the equation seems better, so I add a couple of ways for it.
documentclass[a4paper]{article}
usepackage[left=4cm,right=4cm]{geometry}
usepackage{amsmath}
usepackage[nopar]{lipsum} % for context
numberwithin{equation}{section}
begin{document}
setcounter{section}{3}setcounter{equation}{21}
lipsum[4][1-5]
begin{equation}label{apsidalni}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
end{equation}
lipsum[4][1-5]
begin{equation}label{apsidalni-lowered}
omega_c = frac{360}{P} left[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 right]
rule[-36pt]{0pt}{0pt}
end{equation}
lipsum[4][1-5]
begin{multline}label{apsidalni-multline}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5
\
+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
lipsum[4][1-5]
begingroup
addtolength{multlinegap}{4em}
begin{multline}label{apsidalni-multline-gap}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e)
+ (1+q)g(e,1))r_1^5
\
+k_{2,2}left(frac{15}{q}f(e)
+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
endgroup
lipsum[4][1-5]
end{document}
Here I guessed the text width based on your image.
answered 16 hours ago
egreg
703k8618743151
703k8618743151
add a comment |
add a comment |
up vote
4
down vote
Here are three ways: either you split the equation on two lines (with multline
or with a nested aligned
), or you use the medmath
command, from nccmath
, which makes its argument about 80 % of displaysize.
Also, if you don't use margin notes, you can have more decent margins just loading the geometry
package.
documentclass{article}
usepackage{mathtools, nccmath}
usepackage{showframe}
renewcommand{ShowFrameLinethickness}{0.3pt}
begin{document}
begin{multline}label{apsidalni}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5 \
+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
bigskip
begin{equation}label{apsidalni-1}
begin{aligned}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e) & + (1+q)g(e,1))r_1^5 \
& + k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{aligned}
end{equation}
bigskip
begin{equation}label{apsidalni-2}
omega_c = medmath{frac{360}{P} biggl[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5 \
+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]}
end{equation}
end{document}
1
You could also mention theraisetag
command (see section 3.8 of the manual of theamsmath
package), which does exactly what the OP asked for, nothing more, nothing less.
– GuM
17 hours ago
1
You can't useraisetag
for a single line equation – the label would be messed up with the equation.
– Bernard
16 hours ago
Yes, I knew that: admittedly, my comment was ambiguous. I meant to suggest that you mentionedraisetag
in connection with themultline
environment, and the other environments thatamsmath
provides for groups of displayed equations. And before you object: yes, even in these environments,raisetag
is not effective if the equation number fits in the same line as the equation… ;-)
– GuM
12 hours ago
add a comment |
up vote
4
down vote
Here are three ways: either you split the equation on two lines (with multline
or with a nested aligned
), or you use the medmath
command, from nccmath
, which makes its argument about 80 % of displaysize.
Also, if you don't use margin notes, you can have more decent margins just loading the geometry
package.
documentclass{article}
usepackage{mathtools, nccmath}
usepackage{showframe}
renewcommand{ShowFrameLinethickness}{0.3pt}
begin{document}
begin{multline}label{apsidalni}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5 \
+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
bigskip
begin{equation}label{apsidalni-1}
begin{aligned}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e) & + (1+q)g(e,1))r_1^5 \
& + k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{aligned}
end{equation}
bigskip
begin{equation}label{apsidalni-2}
omega_c = medmath{frac{360}{P} biggl[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5 \
+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]}
end{equation}
end{document}
1
You could also mention theraisetag
command (see section 3.8 of the manual of theamsmath
package), which does exactly what the OP asked for, nothing more, nothing less.
– GuM
17 hours ago
1
You can't useraisetag
for a single line equation – the label would be messed up with the equation.
– Bernard
16 hours ago
Yes, I knew that: admittedly, my comment was ambiguous. I meant to suggest that you mentionedraisetag
in connection with themultline
environment, and the other environments thatamsmath
provides for groups of displayed equations. And before you object: yes, even in these environments,raisetag
is not effective if the equation number fits in the same line as the equation… ;-)
– GuM
12 hours ago
add a comment |
up vote
4
down vote
up vote
4
down vote
Here are three ways: either you split the equation on two lines (with multline
or with a nested aligned
), or you use the medmath
command, from nccmath
, which makes its argument about 80 % of displaysize.
Also, if you don't use margin notes, you can have more decent margins just loading the geometry
package.
documentclass{article}
usepackage{mathtools, nccmath}
usepackage{showframe}
renewcommand{ShowFrameLinethickness}{0.3pt}
begin{document}
begin{multline}label{apsidalni}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5 \
+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
bigskip
begin{equation}label{apsidalni-1}
begin{aligned}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e) & + (1+q)g(e,1))r_1^5 \
& + k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{aligned}
end{equation}
bigskip
begin{equation}label{apsidalni-2}
omega_c = medmath{frac{360}{P} biggl[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5 \
+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]}
end{equation}
end{document}
Here are three ways: either you split the equation on two lines (with multline
or with a nested aligned
), or you use the medmath
command, from nccmath
, which makes its argument about 80 % of displaysize.
Also, if you don't use margin notes, you can have more decent margins just loading the geometry
package.
documentclass{article}
usepackage{mathtools, nccmath}
usepackage{showframe}
renewcommand{ShowFrameLinethickness}{0.3pt}
begin{document}
begin{multline}label{apsidalni}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5 \
+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{multline}
bigskip
begin{equation}label{apsidalni-1}
begin{aligned}
omega_c = frac{360}{P} biggl[k_{2,1} (15qf(e) & + (1+q)g(e,1))r_1^5 \
& + k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]
end{aligned}
end{equation}
bigskip
begin{equation}label{apsidalni-2}
omega_c = medmath{frac{360}{P} biggl[k_{2,1} (15qf(e) + (1+q)g(e,1))r_1^5 \
+k_{2,2}left(frac{15}{q}f(e)+left(1+frac{1}{q}right)g(e,2)right)r_2^5 biggr]}
end{equation}
end{document}
answered 17 hours ago
Bernard
164k769192
164k769192
1
You could also mention theraisetag
command (see section 3.8 of the manual of theamsmath
package), which does exactly what the OP asked for, nothing more, nothing less.
– GuM
17 hours ago
1
You can't useraisetag
for a single line equation – the label would be messed up with the equation.
– Bernard
16 hours ago
Yes, I knew that: admittedly, my comment was ambiguous. I meant to suggest that you mentionedraisetag
in connection with themultline
environment, and the other environments thatamsmath
provides for groups of displayed equations. And before you object: yes, even in these environments,raisetag
is not effective if the equation number fits in the same line as the equation… ;-)
– GuM
12 hours ago
add a comment |
1
You could also mention theraisetag
command (see section 3.8 of the manual of theamsmath
package), which does exactly what the OP asked for, nothing more, nothing less.
– GuM
17 hours ago
1
You can't useraisetag
for a single line equation – the label would be messed up with the equation.
– Bernard
16 hours ago
Yes, I knew that: admittedly, my comment was ambiguous. I meant to suggest that you mentionedraisetag
in connection with themultline
environment, and the other environments thatamsmath
provides for groups of displayed equations. And before you object: yes, even in these environments,raisetag
is not effective if the equation number fits in the same line as the equation… ;-)
– GuM
12 hours ago
1
1
You could also mention the
raisetag
command (see section 3.8 of the manual of the amsmath
package), which does exactly what the OP asked for, nothing more, nothing less.– GuM
17 hours ago
You could also mention the
raisetag
command (see section 3.8 of the manual of the amsmath
package), which does exactly what the OP asked for, nothing more, nothing less.– GuM
17 hours ago
1
1
You can't use
raisetag
for a single line equation – the label would be messed up with the equation.– Bernard
16 hours ago
You can't use
raisetag
for a single line equation – the label would be messed up with the equation.– Bernard
16 hours ago
Yes, I knew that: admittedly, my comment was ambiguous. I meant to suggest that you mentioned
raisetag
in connection with the multline
environment, and the other environments that amsmath
provides for groups of displayed equations. And before you object: yes, even in these environments, raisetag
is not effective if the equation number fits in the same line as the equation… ;-)– GuM
12 hours ago
Yes, I knew that: admittedly, my comment was ambiguous. I meant to suggest that you mentioned
raisetag
in connection with the multline
environment, and the other environments that amsmath
provides for groups of displayed equations. And before you object: yes, even in these environments, raisetag
is not effective if the equation number fits in the same line as the equation… ;-)– GuM
12 hours ago
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f463941%2fequation-space-label%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown