Adding Labels and arrows in Tikz graph Announcing the arrival of Valued Associate #679: Cesar...
What's the point of the test set?
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
Semigroups with no morphisms between them
How many morphisms from 1 to 1+1 can there be?
What order were files/directories output in dir?
How to report t statistic from R
Drawing spherical mirrors
The Nth Gryphon Number
Random body shuffle every night—can we still function?
Flash light on something
Crossing US/Canada Border for less than 24 hours
Did any compiler fully use 80-bit floating point?
Should a wizard buy fine inks every time he want to copy spells into his spellbook?
How long can equipment go unused before powering up runs the risk of damage?
What does it mean that physics no longer uses mechanical models to describe phenomena?
Most bit efficient text communication method?
Did Mueller's report provide an evidentiary basis for the claim of Russian govt election interference via social media?
Trademark violation for app?
Why are my pictures showing a dark band on one edge?
Strange behavior of Object.defineProperty() in JavaScript
A letter with no particular backstory
Amount of permutations on an NxNxN Rubik's Cube
What makes a man succeed?
Is CEO the "profession" with the most psychopaths?
Adding Labels and arrows in Tikz graph
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Draw outside axis with pgfplotsPlacing a removable discontinuity in the graph of a function using TikZHalf arrows in graph using TikZHow to prevent rounded and duplicated tick labels in pgfplots with fixed precision?Tikz Graph with bended arrows (annotations)Tikz and exponential style tick labelDisplaying a pgfplots graph above another pgfplots graph in TikZPgfplots: Scope inside axis environment - follow upAdding additional arrows in the Control Flow Graph using tikzBent arrows in tikz
I'm trying to do something similar to this epsilon-delta graph I've found. Specifically, I'd like to copy the placements and arrows, like the L+e and L-e coming out of L. Same thing with the x0 + d and x0-d coming out of the x0. Can someone help me with this? This is what I have so far.
begin{tikzpicture}
begin{axis}[
,
legend pos=north east,
axis x line=middle,
axis y line=middle,
x tick label style={/pgf/number format/fixed,
/pgf/number format/fixed zerofill,
/pgf/number format/precision=1},
y tick label style={/pgf/number format/fixed,
/pgf/number format/fixed zerofill,
/pgf/number format/precision=1},
grid = major,
width=8cm,
height=6cm,
grid style={dashed, gray!30},
xmin=0 , % start the diagram at this x-coordinate
xmax= 4, % end the diagram at this x-coordinate
ymin= 0, % start the diagram at this y-coordinate
ymax= 11, % end the diagram at this y-coordinate
%axis background/.style={fill=white},
xlabel=$x$,
ylabel=$f(x)$,
tick align=outside,
enlargelimits=false]
% plot the stirling-formulae
%addplot[domain=0:200, red, ultra thick,samples=100] {K/(1 + ((K-X0)/X0) * exp(r*x)) };
addplot[domain=0:200, red, ultra thick,samples=100] {3*x-1 };
addplot[line width=1pt, dashed, mark=none, black] coordinates {(0,8) (3,8)};
addplot[line width=1pt, dashed, mark=none, black] coordinates {(3,0) (3,8)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(3.33,0) (3.333,9)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(2.666,7) (2.666,0)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(2.666,7) (0,7)};
addplot[line width=1pt, solid, mark=none, blue] coordinates {(3.333,9) (0,9)};
addplot[holdot] coordinates{(60,8.66)};
% 1addlegendentry{$f(x) = 10 sin (x)$}
end{axis}
end{tikzpicture}
which gives
tikz-pgf tikz-styles tikz-arrows
New contributor
add a comment |
I'm trying to do something similar to this epsilon-delta graph I've found. Specifically, I'd like to copy the placements and arrows, like the L+e and L-e coming out of L. Same thing with the x0 + d and x0-d coming out of the x0. Can someone help me with this? This is what I have so far.
begin{tikzpicture}
begin{axis}[
,
legend pos=north east,
axis x line=middle,
axis y line=middle,
x tick label style={/pgf/number format/fixed,
/pgf/number format/fixed zerofill,
/pgf/number format/precision=1},
y tick label style={/pgf/number format/fixed,
/pgf/number format/fixed zerofill,
/pgf/number format/precision=1},
grid = major,
width=8cm,
height=6cm,
grid style={dashed, gray!30},
xmin=0 , % start the diagram at this x-coordinate
xmax= 4, % end the diagram at this x-coordinate
ymin= 0, % start the diagram at this y-coordinate
ymax= 11, % end the diagram at this y-coordinate
%axis background/.style={fill=white},
xlabel=$x$,
ylabel=$f(x)$,
tick align=outside,
enlargelimits=false]
% plot the stirling-formulae
%addplot[domain=0:200, red, ultra thick,samples=100] {K/(1 + ((K-X0)/X0) * exp(r*x)) };
addplot[domain=0:200, red, ultra thick,samples=100] {3*x-1 };
addplot[line width=1pt, dashed, mark=none, black] coordinates {(0,8) (3,8)};
addplot[line width=1pt, dashed, mark=none, black] coordinates {(3,0) (3,8)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(3.33,0) (3.333,9)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(2.666,7) (2.666,0)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(2.666,7) (0,7)};
addplot[line width=1pt, solid, mark=none, blue] coordinates {(3.333,9) (0,9)};
addplot[holdot] coordinates{(60,8.66)};
% 1addlegendentry{$f(x) = 10 sin (x)$}
end{axis}
end{tikzpicture}
which gives
tikz-pgf tikz-styles tikz-arrows
New contributor
add a comment |
I'm trying to do something similar to this epsilon-delta graph I've found. Specifically, I'd like to copy the placements and arrows, like the L+e and L-e coming out of L. Same thing with the x0 + d and x0-d coming out of the x0. Can someone help me with this? This is what I have so far.
begin{tikzpicture}
begin{axis}[
,
legend pos=north east,
axis x line=middle,
axis y line=middle,
x tick label style={/pgf/number format/fixed,
/pgf/number format/fixed zerofill,
/pgf/number format/precision=1},
y tick label style={/pgf/number format/fixed,
/pgf/number format/fixed zerofill,
/pgf/number format/precision=1},
grid = major,
width=8cm,
height=6cm,
grid style={dashed, gray!30},
xmin=0 , % start the diagram at this x-coordinate
xmax= 4, % end the diagram at this x-coordinate
ymin= 0, % start the diagram at this y-coordinate
ymax= 11, % end the diagram at this y-coordinate
%axis background/.style={fill=white},
xlabel=$x$,
ylabel=$f(x)$,
tick align=outside,
enlargelimits=false]
% plot the stirling-formulae
%addplot[domain=0:200, red, ultra thick,samples=100] {K/(1 + ((K-X0)/X0) * exp(r*x)) };
addplot[domain=0:200, red, ultra thick,samples=100] {3*x-1 };
addplot[line width=1pt, dashed, mark=none, black] coordinates {(0,8) (3,8)};
addplot[line width=1pt, dashed, mark=none, black] coordinates {(3,0) (3,8)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(3.33,0) (3.333,9)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(2.666,7) (2.666,0)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(2.666,7) (0,7)};
addplot[line width=1pt, solid, mark=none, blue] coordinates {(3.333,9) (0,9)};
addplot[holdot] coordinates{(60,8.66)};
% 1addlegendentry{$f(x) = 10 sin (x)$}
end{axis}
end{tikzpicture}
which gives
tikz-pgf tikz-styles tikz-arrows
New contributor
I'm trying to do something similar to this epsilon-delta graph I've found. Specifically, I'd like to copy the placements and arrows, like the L+e and L-e coming out of L. Same thing with the x0 + d and x0-d coming out of the x0. Can someone help me with this? This is what I have so far.
begin{tikzpicture}
begin{axis}[
,
legend pos=north east,
axis x line=middle,
axis y line=middle,
x tick label style={/pgf/number format/fixed,
/pgf/number format/fixed zerofill,
/pgf/number format/precision=1},
y tick label style={/pgf/number format/fixed,
/pgf/number format/fixed zerofill,
/pgf/number format/precision=1},
grid = major,
width=8cm,
height=6cm,
grid style={dashed, gray!30},
xmin=0 , % start the diagram at this x-coordinate
xmax= 4, % end the diagram at this x-coordinate
ymin= 0, % start the diagram at this y-coordinate
ymax= 11, % end the diagram at this y-coordinate
%axis background/.style={fill=white},
xlabel=$x$,
ylabel=$f(x)$,
tick align=outside,
enlargelimits=false]
% plot the stirling-formulae
%addplot[domain=0:200, red, ultra thick,samples=100] {K/(1 + ((K-X0)/X0) * exp(r*x)) };
addplot[domain=0:200, red, ultra thick,samples=100] {3*x-1 };
addplot[line width=1pt, dashed, mark=none, black] coordinates {(0,8) (3,8)};
addplot[line width=1pt, dashed, mark=none, black] coordinates {(3,0) (3,8)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(3.33,0) (3.333,9)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(2.666,7) (2.666,0)};
addplot[line width=1pt, dashed, mark=none, blue] coordinates {(2.666,7) (0,7)};
addplot[line width=1pt, solid, mark=none, blue] coordinates {(3.333,9) (0,9)};
addplot[holdot] coordinates{(60,8.66)};
% 1addlegendentry{$f(x) = 10 sin (x)$}
end{axis}
end{tikzpicture}
which gives
tikz-pgf tikz-styles tikz-arrows
tikz-pgf tikz-styles tikz-arrows
New contributor
New contributor
New contributor
asked 4 mins ago
JaPJaP
1
1
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
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
});
}
});
JaP is a new contributor. Be nice, and check out our Code of Conduct.
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%2f485690%2fadding-labels-and-arrows-in-tikz-graph%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
JaP is a new contributor. Be nice, and check out our Code of Conduct.
JaP is a new contributor. Be nice, and check out our Code of Conduct.
JaP is a new contributor. Be nice, and check out our Code of Conduct.
JaP is a new contributor. Be nice, and check out our Code of Conduct.
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%2f485690%2fadding-labels-and-arrows-in-tikz-graph%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