xticklabel distance for math expression
I have a pgfplot and the labels in the x axis are not centered as I expected and this is because one of them is higher than the other because of the superscript.
documentclass{article} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
ytick={empty},
ytick={},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
xtick={0,4},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
ytick={-2,2},
domain=-2:6,
samples=55,
scaled ticks=false,
ymax=10,
ymin=-5,
xtick distance={60},
]
%addplot+[no marks,thick] {-5*(x-1)*(x)*(x-2)};
addplot[smooth,thick]
coordinates{
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw[dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw[dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw[dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw[dashed] (axis cs:-3,2) -- (axis cs:4,2);
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

And a zoom of the axis:

How can I do to center the letter u to the same distance ?
pgfplots ticks
add a comment |
I have a pgfplot and the labels in the x axis are not centered as I expected and this is because one of them is higher than the other because of the superscript.
documentclass{article} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
ytick={empty},
ytick={},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
xtick={0,4},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
ytick={-2,2},
domain=-2:6,
samples=55,
scaled ticks=false,
ymax=10,
ymin=-5,
xtick distance={60},
]
%addplot+[no marks,thick] {-5*(x-1)*(x)*(x-2)};
addplot[smooth,thick]
coordinates{
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw[dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw[dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw[dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw[dashed] (axis cs:-3,2) -- (axis cs:4,2);
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

And a zoom of the axis:

How can I do to center the letter u to the same distance ?
pgfplots ticks
Just addxticklabel style={text height=2ex},.
– marmot
Mar 17 at 10:50
It has not worked :( I tried also with20exand I see no difference.
– GG1991
Mar 17 at 10:55
add a comment |
I have a pgfplot and the labels in the x axis are not centered as I expected and this is because one of them is higher than the other because of the superscript.
documentclass{article} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
ytick={empty},
ytick={},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
xtick={0,4},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
ytick={-2,2},
domain=-2:6,
samples=55,
scaled ticks=false,
ymax=10,
ymin=-5,
xtick distance={60},
]
%addplot+[no marks,thick] {-5*(x-1)*(x)*(x-2)};
addplot[smooth,thick]
coordinates{
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw[dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw[dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw[dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw[dashed] (axis cs:-3,2) -- (axis cs:4,2);
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

And a zoom of the axis:

How can I do to center the letter u to the same distance ?
pgfplots ticks
I have a pgfplot and the labels in the x axis are not centered as I expected and this is because one of them is higher than the other because of the superscript.
documentclass{article} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
ytick={empty},
ytick={},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
xtick={0,4},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
ytick={-2,2},
domain=-2:6,
samples=55,
scaled ticks=false,
ymax=10,
ymin=-5,
xtick distance={60},
]
%addplot+[no marks,thick] {-5*(x-1)*(x)*(x-2)};
addplot[smooth,thick]
coordinates{
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw[dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw[dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw[dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw[dashed] (axis cs:-3,2) -- (axis cs:4,2);
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

And a zoom of the axis:

How can I do to center the letter u to the same distance ?
pgfplots ticks
pgfplots ticks
asked Mar 17 at 10:46
GG1991GG1991
104
104
Just addxticklabel style={text height=2ex},.
– marmot
Mar 17 at 10:50
It has not worked :( I tried also with20exand I see no difference.
– GG1991
Mar 17 at 10:55
add a comment |
Just addxticklabel style={text height=2ex},.
– marmot
Mar 17 at 10:50
It has not worked :( I tried also with20exand I see no difference.
– GG1991
Mar 17 at 10:55
Just add
xticklabel style={text height=2ex},.– marmot
Mar 17 at 10:50
Just add
xticklabel style={text height=2ex},.– marmot
Mar 17 at 10:50
It has not worked :( I tried also with
20ex and I see no difference.– GG1991
Mar 17 at 10:55
It has not worked :( I tried also with
20ex and I see no difference.– GG1991
Mar 17 at 10:55
add a comment |
2 Answers
2
active
oldest
votes
On my machine adding xticklabel style={text height=2ex} works.
documentclass{article} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
ytick={empty},
ytick={},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
xtick={0,4},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
xticklabel style={text height=2ex},
ytick={-2,2},
domain=-2:6,
samples=55,
scaled ticks=false,
ymax=10,
ymin=-5,
xtick distance={60},
]
%addplot+[no marks,thick] {-5*(x-1)*(x)*(x-2)};
addplot[smooth,thick]
coordinates{
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw[dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw[dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw[dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw[dashed] (axis cs:-3,2) -- (axis cs:4,2);
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

1
yes, sorry I was doing something wrong, now it works :)
– GG1991
Mar 17 at 11:11
add a comment |
To overcome this there exists the option typeset ticklabels with strut. Simply add it to the axis options and you receive the expected result.
% used PGFPlots v1.16
documentclass[border=5pt]{standalone}
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
xtick={0,4},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
ymin=-5,
ymax=10,
ytick={-2,2},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
typeset ticklabels with strut, % <-- added
]
addplot [smooth,thick] coordinates {
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw [dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw [dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw [dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw [dashed] (axis cs:-3,2) -- (axis cs:4,2);
node [circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node [circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f479906%2fxticklabel-distance-for-math-expression%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
On my machine adding xticklabel style={text height=2ex} works.
documentclass{article} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
ytick={empty},
ytick={},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
xtick={0,4},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
xticklabel style={text height=2ex},
ytick={-2,2},
domain=-2:6,
samples=55,
scaled ticks=false,
ymax=10,
ymin=-5,
xtick distance={60},
]
%addplot+[no marks,thick] {-5*(x-1)*(x)*(x-2)};
addplot[smooth,thick]
coordinates{
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw[dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw[dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw[dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw[dashed] (axis cs:-3,2) -- (axis cs:4,2);
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

1
yes, sorry I was doing something wrong, now it works :)
– GG1991
Mar 17 at 11:11
add a comment |
On my machine adding xticklabel style={text height=2ex} works.
documentclass{article} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
ytick={empty},
ytick={},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
xtick={0,4},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
xticklabel style={text height=2ex},
ytick={-2,2},
domain=-2:6,
samples=55,
scaled ticks=false,
ymax=10,
ymin=-5,
xtick distance={60},
]
%addplot+[no marks,thick] {-5*(x-1)*(x)*(x-2)};
addplot[smooth,thick]
coordinates{
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw[dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw[dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw[dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw[dashed] (axis cs:-3,2) -- (axis cs:4,2);
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

1
yes, sorry I was doing something wrong, now it works :)
– GG1991
Mar 17 at 11:11
add a comment |
On my machine adding xticklabel style={text height=2ex} works.
documentclass{article} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
ytick={empty},
ytick={},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
xtick={0,4},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
xticklabel style={text height=2ex},
ytick={-2,2},
domain=-2:6,
samples=55,
scaled ticks=false,
ymax=10,
ymin=-5,
xtick distance={60},
]
%addplot+[no marks,thick] {-5*(x-1)*(x)*(x-2)};
addplot[smooth,thick]
coordinates{
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw[dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw[dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw[dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw[dashed] (axis cs:-3,2) -- (axis cs:4,2);
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

On my machine adding xticklabel style={text height=2ex} works.
documentclass{article} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
ytick={empty},
ytick={},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
xtick={0,4},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
xticklabel style={text height=2ex},
ytick={-2,2},
domain=-2:6,
samples=55,
scaled ticks=false,
ymax=10,
ymin=-5,
xtick distance={60},
]
%addplot+[no marks,thick] {-5*(x-1)*(x)*(x-2)};
addplot[smooth,thick]
coordinates{
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw[dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw[dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw[dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw[dashed] (axis cs:-3,2) -- (axis cs:4,2);
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node[circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

answered Mar 17 at 10:57
marmotmarmot
112k5141267
112k5141267
1
yes, sorry I was doing something wrong, now it works :)
– GG1991
Mar 17 at 11:11
add a comment |
1
yes, sorry I was doing something wrong, now it works :)
– GG1991
Mar 17 at 11:11
1
1
yes, sorry I was doing something wrong, now it works :)
– GG1991
Mar 17 at 11:11
yes, sorry I was doing something wrong, now it works :)
– GG1991
Mar 17 at 11:11
add a comment |
To overcome this there exists the option typeset ticklabels with strut. Simply add it to the axis options and you receive the expected result.
% used PGFPlots v1.16
documentclass[border=5pt]{standalone}
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
xtick={0,4},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
ymin=-5,
ymax=10,
ytick={-2,2},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
typeset ticklabels with strut, % <-- added
]
addplot [smooth,thick] coordinates {
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw [dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw [dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw [dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw [dashed] (axis cs:-3,2) -- (axis cs:4,2);
node [circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node [circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

add a comment |
To overcome this there exists the option typeset ticklabels with strut. Simply add it to the axis options and you receive the expected result.
% used PGFPlots v1.16
documentclass[border=5pt]{standalone}
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
xtick={0,4},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
ymin=-5,
ymax=10,
ytick={-2,2},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
typeset ticklabels with strut, % <-- added
]
addplot [smooth,thick] coordinates {
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw [dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw [dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw [dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw [dashed] (axis cs:-3,2) -- (axis cs:4,2);
node [circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node [circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

add a comment |
To overcome this there exists the option typeset ticklabels with strut. Simply add it to the axis options and you receive the expected result.
% used PGFPlots v1.16
documentclass[border=5pt]{standalone}
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
xtick={0,4},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
ymin=-5,
ymax=10,
ytick={-2,2},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
typeset ticklabels with strut, % <-- added
]
addplot [smooth,thick] coordinates {
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw [dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw [dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw [dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw [dashed] (axis cs:-3,2) -- (axis cs:4,2);
node [circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node [circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

To overcome this there exists the option typeset ticklabels with strut. Simply add it to the axis options and you receive the expected result.
% used PGFPlots v1.16
documentclass[border=5pt]{standalone}
usepackage{pgfplots}
begin{document}
begin{tikzpicture}
begin{axis}[
xtick={0,4},
xticklabels={$u_{n+1}^{}$,$u_{n+1}^{0}$},
ymin=-5,
ymax=10,
ytick={-2,2},
yticklabels={$r(u_{n+1}^{}) = 0$,$r(u_{n+1}^{0})>0$},
typeset ticklabels with strut, % <-- added
]
addplot [smooth,thick] coordinates {
(-1.9,9.9) (-1,0) (0,-2)
(1,0)(3,4)(4,2)
(5,4)(6,10)
};
draw [dashed] (axis cs:0,-5) -- (axis cs:0,-2);
draw [dashed] (axis cs:4,-5) -- (axis cs:4,2);
draw [dashed] (axis cs:-3,-2) -- (axis cs:0,-2);
draw [dashed] (axis cs:-3,2) -- (axis cs:4,2);
node [circle,draw=black,fill=black,scale=0.8] at (axis cs:0,-2) {};
node [circle,draw=black,fill=black,scale=0.8] at (axis cs:4,2) {};
end{axis}
end{tikzpicture}
end{document}

answered Mar 17 at 20:54
Stefan PinnowStefan Pinnow
20.3k83477
20.3k83477
add a comment |
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.
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%2f479906%2fxticklabel-distance-for-math-expression%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
Just add
xticklabel style={text height=2ex},.– marmot
Mar 17 at 10:50
It has not worked :( I tried also with
20exand I see no difference.– GG1991
Mar 17 at 10:55