Save tikz image and use away from latexSave and load TikZ graphsHow to save a figure produced by tikz...
Which country benefited the most from UN Security Council vetoes?
Does detail obscure or enhance action?
Perform and show arithmetic with LuaLaTeX
Is it legal for company to use my work email to pretend I still work there?
Replacing matching entries in one column of a file by another column from a different file
Add text to same line using sed
What's that red-plus icon near a text?
How do I deal with an unproductive colleague in a small company?
How is it possible to have an ability score that is less than 3?
Why is Minecraft giving an OpenGL error?
Why does Kotter return in Welcome Back Kotter?
How to draw a waving flag in TikZ
Fully-Firstable Anagram Sets
Can a Cauchy sequence converge for one metric while not converging for another?
What do the dots in this tr command do: tr .............A-Z A-ZA-Z <<< "JVPQBOV" (with 13 dots)
Has there ever been an airliner design involving reducing generator load by installing solar panels?
LWC SFDX source push error TypeError: LWC1009: decl.moveTo is not a function
Why do I get two different answers for this counting problem?
How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?
How to efficiently unroll a matrix by value with numpy?
Meaning of に in 本当に
How much of data wrangling is a data scientist's job?
Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)
Is it inappropriate for a student to attend their mentor's dissertation defense?
Save tikz image and use away from latex
Save and load TikZ graphsHow to save a figure produced by tikz save/export as JPG/PNG fileTikZ scaling graphic and adjust node position and keep font sizeSave from LyX to PNGTikz : texture cube faces using png imageCreate PNG image from PSTricks drawingGenerating a transparent image from LaTeXConvert pdf image to png. TiKZDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of them
I need to create and save latex drawing so i can use there else where.
Im using the code
begin{tikzpicture}[scale=0.8,domain=-2:20]
begin{axis}[
height = 11.7cm,
width = 15cm,
axis lines=middle,
grid=major,
xmin=-2,
xmax=10,
ymin=-2,
ymax=20,
y label style={at={(axis description cs:0.5,-0.05)},anchor=north},
x label style={at={(axis description cs:-0.05,.5)},rotate=0,anchor=south},
xlabel=$y$,
ylabel=$x$,
xtick={-2,-1,0,...,14},
ytick={-2,0,...,20},
tick style={very thick},
legend style={
at={(rel axis cs:0,1)},
anchor=north west,draw=none,inner sep=0pt,fill=gray!10}
]
addplot[black,thick,samples=1] {0};
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
draw (4,1.5) node[anchor=north]{(4,0)};
draw (1.2,16) node[anchor=east]{(0,16)};
draw (7,8) node[anchor=west]{$y=x^2-8x+16$};
end{axis}
end{tikzpicture}
and i want to save the image it creates as a png. I need to create multiple of these with differences to each image. So i need to create all the images with the exact scale and size so doing a screenshot of the page is not good enough.
tikz-pgf tikz-styles png
add a comment |
I need to create and save latex drawing so i can use there else where.
Im using the code
begin{tikzpicture}[scale=0.8,domain=-2:20]
begin{axis}[
height = 11.7cm,
width = 15cm,
axis lines=middle,
grid=major,
xmin=-2,
xmax=10,
ymin=-2,
ymax=20,
y label style={at={(axis description cs:0.5,-0.05)},anchor=north},
x label style={at={(axis description cs:-0.05,.5)},rotate=0,anchor=south},
xlabel=$y$,
ylabel=$x$,
xtick={-2,-1,0,...,14},
ytick={-2,0,...,20},
tick style={very thick},
legend style={
at={(rel axis cs:0,1)},
anchor=north west,draw=none,inner sep=0pt,fill=gray!10}
]
addplot[black,thick,samples=1] {0};
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
draw (4,1.5) node[anchor=north]{(4,0)};
draw (1.2,16) node[anchor=east]{(0,16)};
draw (7,8) node[anchor=west]{$y=x^2-8x+16$};
end{axis}
end{tikzpicture}
and i want to save the image it creates as a png. I need to create multiple of these with differences to each image. So i need to create all the images with the exact scale and size so doing a screenshot of the page is not good enough.
tikz-pgf tikz-styles png
Just compile it as a standalone document?
– marmot
8 hours ago
wouldnt that create a A4 page? I want it to be the size of the graph
– Jettie Baker
8 hours ago
1
No, it wouldn't. Id you usedocumentclass[tikz]{standalone}
this will produce a pdf of the size of the tikz graph. If you use theconvert
options ofstandalone
appropriately, you can create automatically a png of the same page size.
– marmot
8 hours ago
I dont understand how to do what you are trying to say
– Jettie Baker
8 hours ago
add a comment |
I need to create and save latex drawing so i can use there else where.
Im using the code
begin{tikzpicture}[scale=0.8,domain=-2:20]
begin{axis}[
height = 11.7cm,
width = 15cm,
axis lines=middle,
grid=major,
xmin=-2,
xmax=10,
ymin=-2,
ymax=20,
y label style={at={(axis description cs:0.5,-0.05)},anchor=north},
x label style={at={(axis description cs:-0.05,.5)},rotate=0,anchor=south},
xlabel=$y$,
ylabel=$x$,
xtick={-2,-1,0,...,14},
ytick={-2,0,...,20},
tick style={very thick},
legend style={
at={(rel axis cs:0,1)},
anchor=north west,draw=none,inner sep=0pt,fill=gray!10}
]
addplot[black,thick,samples=1] {0};
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
draw (4,1.5) node[anchor=north]{(4,0)};
draw (1.2,16) node[anchor=east]{(0,16)};
draw (7,8) node[anchor=west]{$y=x^2-8x+16$};
end{axis}
end{tikzpicture}
and i want to save the image it creates as a png. I need to create multiple of these with differences to each image. So i need to create all the images with the exact scale and size so doing a screenshot of the page is not good enough.
tikz-pgf tikz-styles png
I need to create and save latex drawing so i can use there else where.
Im using the code
begin{tikzpicture}[scale=0.8,domain=-2:20]
begin{axis}[
height = 11.7cm,
width = 15cm,
axis lines=middle,
grid=major,
xmin=-2,
xmax=10,
ymin=-2,
ymax=20,
y label style={at={(axis description cs:0.5,-0.05)},anchor=north},
x label style={at={(axis description cs:-0.05,.5)},rotate=0,anchor=south},
xlabel=$y$,
ylabel=$x$,
xtick={-2,-1,0,...,14},
ytick={-2,0,...,20},
tick style={very thick},
legend style={
at={(rel axis cs:0,1)},
anchor=north west,draw=none,inner sep=0pt,fill=gray!10}
]
addplot[black,thick,samples=1] {0};
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
draw (4,1.5) node[anchor=north]{(4,0)};
draw (1.2,16) node[anchor=east]{(0,16)};
draw (7,8) node[anchor=west]{$y=x^2-8x+16$};
end{axis}
end{tikzpicture}
and i want to save the image it creates as a png. I need to create multiple of these with differences to each image. So i need to create all the images with the exact scale and size so doing a screenshot of the page is not good enough.
tikz-pgf tikz-styles png
tikz-pgf tikz-styles png
asked 8 hours ago
Jettie BakerJettie Baker
646
646
Just compile it as a standalone document?
– marmot
8 hours ago
wouldnt that create a A4 page? I want it to be the size of the graph
– Jettie Baker
8 hours ago
1
No, it wouldn't. Id you usedocumentclass[tikz]{standalone}
this will produce a pdf of the size of the tikz graph. If you use theconvert
options ofstandalone
appropriately, you can create automatically a png of the same page size.
– marmot
8 hours ago
I dont understand how to do what you are trying to say
– Jettie Baker
8 hours ago
add a comment |
Just compile it as a standalone document?
– marmot
8 hours ago
wouldnt that create a A4 page? I want it to be the size of the graph
– Jettie Baker
8 hours ago
1
No, it wouldn't. Id you usedocumentclass[tikz]{standalone}
this will produce a pdf of the size of the tikz graph. If you use theconvert
options ofstandalone
appropriately, you can create automatically a png of the same page size.
– marmot
8 hours ago
I dont understand how to do what you are trying to say
– Jettie Baker
8 hours ago
Just compile it as a standalone document?
– marmot
8 hours ago
Just compile it as a standalone document?
– marmot
8 hours ago
wouldnt that create a A4 page? I want it to be the size of the graph
– Jettie Baker
8 hours ago
wouldnt that create a A4 page? I want it to be the size of the graph
– Jettie Baker
8 hours ago
1
1
No, it wouldn't. Id you use
documentclass[tikz]{standalone}
this will produce a pdf of the size of the tikz graph. If you use the convert
options of standalone
appropriately, you can create automatically a png of the same page size.– marmot
8 hours ago
No, it wouldn't. Id you use
documentclass[tikz]{standalone}
this will produce a pdf of the size of the tikz graph. If you use the convert
options of standalone
appropriately, you can create automatically a png of the same page size.– marmot
8 hours ago
I dont understand how to do what you are trying to say
– Jettie Baker
8 hours ago
I dont understand how to do what you are trying to say
– Jettie Baker
8 hours ago
add a comment |
1 Answer
1
active
oldest
votes
I'll be happy to remove this but if I compile
documentclass[tikz,convert]{standalone}
usepackage{pgfplots}
pgfplotsset{compat=1.16}
begin{document}
begin{tikzpicture}[scale=0.8,domain=-2:20]
begin{axis}[
height = 11.7cm,
width = 15cm,
axis lines=middle,
grid=major,
xmin=-2,
xmax=10,
ymin=-2,
ymax=20,
y label style={at={(axis description cs:0.5,-0.05)},anchor=north},
x label style={at={(axis description cs:-0.05,.5)},rotate=0,anchor=south},
xlabel=$y$,
ylabel=$x$,
xtick={-2,-1,0,...,14},
ytick={-2,0,...,20},
tick style={very thick},
legend style={
at={(rel axis cs:0,1)},
anchor=north west,draw=none,inner sep=0pt,fill=gray!10}
]
addplot[black,thick,samples=1] {0};
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
draw (4,1.5) node[anchor=north]{(4,0)};
draw (1.2,16) node[anchor=east]{(0,16)};
draw (7,8) node[anchor=west]{$y=x^2-8x+16$};
end{axis}
end{tikzpicture}
end{document}
with pdflatex -shell-escape
I get a png file of the right size.
that is getting closer to what im looking for so thank you however its not drawing the graph correctly
– Jettie Baker
8 hours ago
1
@JettieBaker I think marmot used your code directly, just adding the preamble anddocument
environment, so the output is as you specified it. That said, expect for the fact that the node with$y = 3$
is clipped away as it's far outside the axis boundaries, I don't immediately see what is wrong with the output, you might have to be more specific.
– Torbjørn T.
7 hours ago
@marmot Are we talking about the same node? I was referring to the one indraw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
.
– Torbjørn T.
6 hours ago
@TorbjørnT. Yes, this one is indeed not there. (But this has nothing to do with the conversion but with the fact that pgfplots clips it, I think. In fact, if I addclip=false
to the axis options the node will be there, together with a curve that overshoots the axis by a large factor.)
– marmot
6 hours ago
1
No certainly nothing to do with the conversion, I was just speculating about what Jettie thought was wrong with the diagram.
– Torbjørn T.
5 hours ago
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%2f483428%2fsave-tikz-image-and-use-away-from-latex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'll be happy to remove this but if I compile
documentclass[tikz,convert]{standalone}
usepackage{pgfplots}
pgfplotsset{compat=1.16}
begin{document}
begin{tikzpicture}[scale=0.8,domain=-2:20]
begin{axis}[
height = 11.7cm,
width = 15cm,
axis lines=middle,
grid=major,
xmin=-2,
xmax=10,
ymin=-2,
ymax=20,
y label style={at={(axis description cs:0.5,-0.05)},anchor=north},
x label style={at={(axis description cs:-0.05,.5)},rotate=0,anchor=south},
xlabel=$y$,
ylabel=$x$,
xtick={-2,-1,0,...,14},
ytick={-2,0,...,20},
tick style={very thick},
legend style={
at={(rel axis cs:0,1)},
anchor=north west,draw=none,inner sep=0pt,fill=gray!10}
]
addplot[black,thick,samples=1] {0};
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
draw (4,1.5) node[anchor=north]{(4,0)};
draw (1.2,16) node[anchor=east]{(0,16)};
draw (7,8) node[anchor=west]{$y=x^2-8x+16$};
end{axis}
end{tikzpicture}
end{document}
with pdflatex -shell-escape
I get a png file of the right size.
that is getting closer to what im looking for so thank you however its not drawing the graph correctly
– Jettie Baker
8 hours ago
1
@JettieBaker I think marmot used your code directly, just adding the preamble anddocument
environment, so the output is as you specified it. That said, expect for the fact that the node with$y = 3$
is clipped away as it's far outside the axis boundaries, I don't immediately see what is wrong with the output, you might have to be more specific.
– Torbjørn T.
7 hours ago
@marmot Are we talking about the same node? I was referring to the one indraw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
.
– Torbjørn T.
6 hours ago
@TorbjørnT. Yes, this one is indeed not there. (But this has nothing to do with the conversion but with the fact that pgfplots clips it, I think. In fact, if I addclip=false
to the axis options the node will be there, together with a curve that overshoots the axis by a large factor.)
– marmot
6 hours ago
1
No certainly nothing to do with the conversion, I was just speculating about what Jettie thought was wrong with the diagram.
– Torbjørn T.
5 hours ago
add a comment |
I'll be happy to remove this but if I compile
documentclass[tikz,convert]{standalone}
usepackage{pgfplots}
pgfplotsset{compat=1.16}
begin{document}
begin{tikzpicture}[scale=0.8,domain=-2:20]
begin{axis}[
height = 11.7cm,
width = 15cm,
axis lines=middle,
grid=major,
xmin=-2,
xmax=10,
ymin=-2,
ymax=20,
y label style={at={(axis description cs:0.5,-0.05)},anchor=north},
x label style={at={(axis description cs:-0.05,.5)},rotate=0,anchor=south},
xlabel=$y$,
ylabel=$x$,
xtick={-2,-1,0,...,14},
ytick={-2,0,...,20},
tick style={very thick},
legend style={
at={(rel axis cs:0,1)},
anchor=north west,draw=none,inner sep=0pt,fill=gray!10}
]
addplot[black,thick,samples=1] {0};
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
draw (4,1.5) node[anchor=north]{(4,0)};
draw (1.2,16) node[anchor=east]{(0,16)};
draw (7,8) node[anchor=west]{$y=x^2-8x+16$};
end{axis}
end{tikzpicture}
end{document}
with pdflatex -shell-escape
I get a png file of the right size.
that is getting closer to what im looking for so thank you however its not drawing the graph correctly
– Jettie Baker
8 hours ago
1
@JettieBaker I think marmot used your code directly, just adding the preamble anddocument
environment, so the output is as you specified it. That said, expect for the fact that the node with$y = 3$
is clipped away as it's far outside the axis boundaries, I don't immediately see what is wrong with the output, you might have to be more specific.
– Torbjørn T.
7 hours ago
@marmot Are we talking about the same node? I was referring to the one indraw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
.
– Torbjørn T.
6 hours ago
@TorbjørnT. Yes, this one is indeed not there. (But this has nothing to do with the conversion but with the fact that pgfplots clips it, I think. In fact, if I addclip=false
to the axis options the node will be there, together with a curve that overshoots the axis by a large factor.)
– marmot
6 hours ago
1
No certainly nothing to do with the conversion, I was just speculating about what Jettie thought was wrong with the diagram.
– Torbjørn T.
5 hours ago
add a comment |
I'll be happy to remove this but if I compile
documentclass[tikz,convert]{standalone}
usepackage{pgfplots}
pgfplotsset{compat=1.16}
begin{document}
begin{tikzpicture}[scale=0.8,domain=-2:20]
begin{axis}[
height = 11.7cm,
width = 15cm,
axis lines=middle,
grid=major,
xmin=-2,
xmax=10,
ymin=-2,
ymax=20,
y label style={at={(axis description cs:0.5,-0.05)},anchor=north},
x label style={at={(axis description cs:-0.05,.5)},rotate=0,anchor=south},
xlabel=$y$,
ylabel=$x$,
xtick={-2,-1,0,...,14},
ytick={-2,0,...,20},
tick style={very thick},
legend style={
at={(rel axis cs:0,1)},
anchor=north west,draw=none,inner sep=0pt,fill=gray!10}
]
addplot[black,thick,samples=1] {0};
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
draw (4,1.5) node[anchor=north]{(4,0)};
draw (1.2,16) node[anchor=east]{(0,16)};
draw (7,8) node[anchor=west]{$y=x^2-8x+16$};
end{axis}
end{tikzpicture}
end{document}
with pdflatex -shell-escape
I get a png file of the right size.
I'll be happy to remove this but if I compile
documentclass[tikz,convert]{standalone}
usepackage{pgfplots}
pgfplotsset{compat=1.16}
begin{document}
begin{tikzpicture}[scale=0.8,domain=-2:20]
begin{axis}[
height = 11.7cm,
width = 15cm,
axis lines=middle,
grid=major,
xmin=-2,
xmax=10,
ymin=-2,
ymax=20,
y label style={at={(axis description cs:0.5,-0.05)},anchor=north},
x label style={at={(axis description cs:-0.05,.5)},rotate=0,anchor=south},
xlabel=$y$,
ylabel=$x$,
xtick={-2,-1,0,...,14},
ytick={-2,0,...,20},
tick style={very thick},
legend style={
at={(rel axis cs:0,1)},
anchor=north west,draw=none,inner sep=0pt,fill=gray!10}
]
addplot[black,thick,samples=1] {0};
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
draw (4,1.5) node[anchor=north]{(4,0)};
draw (1.2,16) node[anchor=east]{(0,16)};
draw (7,8) node[anchor=west]{$y=x^2-8x+16$};
end{axis}
end{tikzpicture}
end{document}
with pdflatex -shell-escape
I get a png file of the right size.
edited 5 hours ago
answered 8 hours ago
marmotmarmot
115k5145276
115k5145276
that is getting closer to what im looking for so thank you however its not drawing the graph correctly
– Jettie Baker
8 hours ago
1
@JettieBaker I think marmot used your code directly, just adding the preamble anddocument
environment, so the output is as you specified it. That said, expect for the fact that the node with$y = 3$
is clipped away as it's far outside the axis boundaries, I don't immediately see what is wrong with the output, you might have to be more specific.
– Torbjørn T.
7 hours ago
@marmot Are we talking about the same node? I was referring to the one indraw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
.
– Torbjørn T.
6 hours ago
@TorbjørnT. Yes, this one is indeed not there. (But this has nothing to do with the conversion but with the fact that pgfplots clips it, I think. In fact, if I addclip=false
to the axis options the node will be there, together with a curve that overshoots the axis by a large factor.)
– marmot
6 hours ago
1
No certainly nothing to do with the conversion, I was just speculating about what Jettie thought was wrong with the diagram.
– Torbjørn T.
5 hours ago
add a comment |
that is getting closer to what im looking for so thank you however its not drawing the graph correctly
– Jettie Baker
8 hours ago
1
@JettieBaker I think marmot used your code directly, just adding the preamble anddocument
environment, so the output is as you specified it. That said, expect for the fact that the node with$y = 3$
is clipped away as it's far outside the axis boundaries, I don't immediately see what is wrong with the output, you might have to be more specific.
– Torbjørn T.
7 hours ago
@marmot Are we talking about the same node? I was referring to the one indraw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
.
– Torbjørn T.
6 hours ago
@TorbjørnT. Yes, this one is indeed not there. (But this has nothing to do with the conversion but with the fact that pgfplots clips it, I think. In fact, if I addclip=false
to the axis options the node will be there, together with a curve that overshoots the axis by a large factor.)
– marmot
6 hours ago
1
No certainly nothing to do with the conversion, I was just speculating about what Jettie thought was wrong with the diagram.
– Torbjørn T.
5 hours ago
that is getting closer to what im looking for so thank you however its not drawing the graph correctly
– Jettie Baker
8 hours ago
that is getting closer to what im looking for so thank you however its not drawing the graph correctly
– Jettie Baker
8 hours ago
1
1
@JettieBaker I think marmot used your code directly, just adding the preamble and
document
environment, so the output is as you specified it. That said, expect for the fact that the node with $y = 3$
is clipped away as it's far outside the axis boundaries, I don't immediately see what is wrong with the output, you might have to be more specific.– Torbjørn T.
7 hours ago
@JettieBaker I think marmot used your code directly, just adding the preamble and
document
environment, so the output is as you specified it. That said, expect for the fact that the node with $y = 3$
is clipped away as it's far outside the axis boundaries, I don't immediately see what is wrong with the output, you might have to be more specific.– Torbjørn T.
7 hours ago
@marmot Are we talking about the same node? I was referring to the one in
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
.– Torbjørn T.
6 hours ago
@marmot Are we talking about the same node? I was referring to the one in
draw[color=red, smooth] plot (x,x*x-8*x+16) node[above left] {$y = 3$};
.– Torbjørn T.
6 hours ago
@TorbjørnT. Yes, this one is indeed not there. (But this has nothing to do with the conversion but with the fact that pgfplots clips it, I think. In fact, if I add
clip=false
to the axis options the node will be there, together with a curve that overshoots the axis by a large factor.)– marmot
6 hours ago
@TorbjørnT. Yes, this one is indeed not there. (But this has nothing to do with the conversion but with the fact that pgfplots clips it, I think. In fact, if I add
clip=false
to the axis options the node will be there, together with a curve that overshoots the axis by a large factor.)– marmot
6 hours ago
1
1
No certainly nothing to do with the conversion, I was just speculating about what Jettie thought was wrong with the diagram.
– Torbjørn T.
5 hours ago
No certainly nothing to do with the conversion, I was just speculating about what Jettie thought was wrong with the diagram.
– Torbjørn T.
5 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.
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%2f483428%2fsave-tikz-image-and-use-away-from-latex%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 compile it as a standalone document?
– marmot
8 hours ago
wouldnt that create a A4 page? I want it to be the size of the graph
– Jettie Baker
8 hours ago
1
No, it wouldn't. Id you use
documentclass[tikz]{standalone}
this will produce a pdf of the size of the tikz graph. If you use theconvert
options ofstandalone
appropriately, you can create automatically a png of the same page size.– marmot
8 hours ago
I dont understand how to do what you are trying to say
– Jettie Baker
8 hours ago