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
What order were files/directories output in dir?
What would you call this weird metallic apparatus that allows you to lift people?
How many time has Arya actually used Needle?
Crossing US/Canada Border for less than 24 hours
What does Turing mean by this statement?
Draw 4 of the same figure in the same tikzpicture
Amount of permutations on an NxNxN Rubik's Cube
Putting class ranking in CV, but against dept guidelines
Is there public access to the Meteor Crater in Arizona?
The test team as an enemy of development? And how can this be avoided?
Does "shooting for effect" have contradictory meanings in different areas?
Flash light on something
What's the point of the test set?
Tannaka duality for semisimple groups
Drawing spherical mirrors
What is an "asse" in Elizabethan English?
Karn the great creator - 'card from outside the game' in sealed
Misunderstanding of Sylow theory
Intuitive explanation of the rank-nullity theorem
Strange behavior of Object.defineProperty() in JavaScript
Can a Beast Master ranger change beast companions?
Why does it sometimes sound good to play a grace note as a lead in to a note in a melody?
Dyck paths with extra diagonals from valleys (Laser construction)
What to do with repeated rejections for phd position
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.
begintikzpicture
beginaxis[
,
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)$
endaxis
endtikzpicture
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.
begintikzpicture
beginaxis[
,
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)$
endaxis
endtikzpicture
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.
begintikzpicture
beginaxis[
,
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)$
endaxis
endtikzpicture
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.
begintikzpicture
beginaxis[
,
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)$
endaxis
endtikzpicture
which gives
tikz-pgf tikz-styles tikz-arrows
tikz-pgf tikz-styles tikz-arrows
New contributor
New contributor
New contributor
asked 1 min 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