Package pgfkeys Error. What does it mean' Announcing the arrival of Valued Associate #679:...
Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?
Should I discuss the type of campaign with my players?
What are the pros and cons of Aerospike nosecones?
illegal generic type for instanceof when using local classes
What does the "x" in "x86" represent?
Is pollution the main cause of Notre Dame Cathedral's deterioration?
Is there a (better) way to access $wpdb results?
How to align braces and mid in a set in order to get the same height
Is it true that "carbohydrates are of no use for the basal metabolic need"?
How discoverable are IPv6 addresses and AAAA names by potential attackers?
What is Arya's weapon design?
How to react to hostile behavior from a senior developer?
What exactly is a "Meth" in Altered Carbon?
How to find all the available tools in macOS terminal?
Generate an RGB colour grid
Why are Kinder Surprise Eggs illegal in the USA?
Overriding an object in memory with placement new
Book where humans were engineered with genes from animal species to survive hostile planets
What does an IRS interview request entail when called in to verify expenses for a sole proprietor small business?
Can a non-EU citizen traveling with me come with me through the EU passport line?
What is the meaning of the new sigil in Game of Thrones Season 8 intro?
Check which numbers satisfy the condition [A*B*C = A! + B! + C!]
How to run gsettings for another user Ubuntu 18.04.2 LTS
Should I use a zero-interest credit card for a large one-time purchase?
Package pgfkeys Error. What does it mean'
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)What does the colon in Tikz coordinates mean?Problem with “Package pgfkeys Error”Package pgfkeys Error: The key '/tikz/opacity' requires a valueWhat does “typeset twice” mean?How to prevent rounded and duplicated tick labels in pgfplots with fixed precision?What does /. mean exactly?What does begin{tikzpicture}[>=latex'] mean?What does draw(0, x, 4) mean?genealogytree pgfkeys ErrorWhat does 'text badly centered' mean, and what is its modern PGF/TikZ equivalent
Package pgfkeys Error: I do not know the key '/tikz/5'
I keep receiving this error at the "end{axis}" line although I don't see where the mistake is.
usepackage{amsmath, amsfonts, amssymb, amsthm}
usepackage{pgfplots}
pgfplotsset{compat=newest}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.5]
begin{axis}[xmin=-1,5, xmax=2,5, ymin=-1, ymax=2,samples=100,grid=minor]
addplot[black, thin](x,0);
addplot[blue, thick](x,x - x^2);
end{axis}
end{tikzpicture}
end{center}
end{document}
tikz-pgf formatting
New contributor
Jacopo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Package pgfkeys Error: I do not know the key '/tikz/5'
I keep receiving this error at the "end{axis}" line although I don't see where the mistake is.
usepackage{amsmath, amsfonts, amssymb, amsthm}
usepackage{pgfplots}
pgfplotsset{compat=newest}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.5]
begin{axis}[xmin=-1,5, xmax=2,5, ymin=-1, ymax=2,samples=100,grid=minor]
addplot[black, thin](x,0);
addplot[blue, thick](x,x - x^2);
end{axis}
end{tikzpicture}
end{center}
end{document}
tikz-pgf formatting
New contributor
Jacopo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Package pgfkeys Error: I do not know the key '/tikz/5'
I keep receiving this error at the "end{axis}" line although I don't see where the mistake is.
usepackage{amsmath, amsfonts, amssymb, amsthm}
usepackage{pgfplots}
pgfplotsset{compat=newest}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.5]
begin{axis}[xmin=-1,5, xmax=2,5, ymin=-1, ymax=2,samples=100,grid=minor]
addplot[black, thin](x,0);
addplot[blue, thick](x,x - x^2);
end{axis}
end{tikzpicture}
end{center}
end{document}
tikz-pgf formatting
New contributor
Jacopo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Package pgfkeys Error: I do not know the key '/tikz/5'
I keep receiving this error at the "end{axis}" line although I don't see where the mistake is.
usepackage{amsmath, amsfonts, amssymb, amsthm}
usepackage{pgfplots}
pgfplotsset{compat=newest}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.5]
begin{axis}[xmin=-1,5, xmax=2,5, ymin=-1, ymax=2,samples=100,grid=minor]
addplot[black, thin](x,0);
addplot[blue, thick](x,x - x^2);
end{axis}
end{tikzpicture}
end{center}
end{document}
tikz-pgf formatting
tikz-pgf formatting
New contributor
Jacopo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jacopo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jacopo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 4 mins ago
JacopoJacopo
31
31
New contributor
Jacopo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jacopo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Jacopo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
2.5 instead of 2,5 and 1.5 instead of 1,5:
documentclass{article}
usepackage{amsmath, amsfonts, amssymb, amsthm}
usepackage{pgfplots}
pgfplotsset{compat=newest}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.5]
begin{axis}[xmin=-1.5, xmax=2.5, ymin=-1, ymax=2,samples=100,grid=minor]
addplot[black, thin](x,0);
addplot[blue, thick](x,x - x^2);
end{axis}
end{tikzpicture}
end{center}
end{document}

New contributor
def is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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
});
}
});
Jacopo 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%2f485209%2fpackage-pgfkeys-error-what-does-it-mean%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
2.5 instead of 2,5 and 1.5 instead of 1,5:
documentclass{article}
usepackage{amsmath, amsfonts, amssymb, amsthm}
usepackage{pgfplots}
pgfplotsset{compat=newest}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.5]
begin{axis}[xmin=-1.5, xmax=2.5, ymin=-1, ymax=2,samples=100,grid=minor]
addplot[black, thin](x,0);
addplot[blue, thick](x,x - x^2);
end{axis}
end{tikzpicture}
end{center}
end{document}

New contributor
def is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
2.5 instead of 2,5 and 1.5 instead of 1,5:
documentclass{article}
usepackage{amsmath, amsfonts, amssymb, amsthm}
usepackage{pgfplots}
pgfplotsset{compat=newest}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.5]
begin{axis}[xmin=-1.5, xmax=2.5, ymin=-1, ymax=2,samples=100,grid=minor]
addplot[black, thin](x,0);
addplot[blue, thick](x,x - x^2);
end{axis}
end{tikzpicture}
end{center}
end{document}

New contributor
def is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
2.5 instead of 2,5 and 1.5 instead of 1,5:
documentclass{article}
usepackage{amsmath, amsfonts, amssymb, amsthm}
usepackage{pgfplots}
pgfplotsset{compat=newest}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.5]
begin{axis}[xmin=-1.5, xmax=2.5, ymin=-1, ymax=2,samples=100,grid=minor]
addplot[black, thin](x,0);
addplot[blue, thick](x,x - x^2);
end{axis}
end{tikzpicture}
end{center}
end{document}

New contributor
def is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2.5 instead of 2,5 and 1.5 instead of 1,5:
documentclass{article}
usepackage{amsmath, amsfonts, amssymb, amsthm}
usepackage{pgfplots}
pgfplotsset{compat=newest}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.5]
begin{axis}[xmin=-1.5, xmax=2.5, ymin=-1, ymax=2,samples=100,grid=minor]
addplot[black, thin](x,0);
addplot[blue, thick](x,x - x^2);
end{axis}
end{tikzpicture}
end{center}
end{document}

New contributor
def is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
def is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 3 mins ago
defdef
11
11
New contributor
def is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
def is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
def is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
Jacopo is a new contributor. Be nice, and check out our Code of Conduct.
Jacopo is a new contributor. Be nice, and check out our Code of Conduct.
Jacopo is a new contributor. Be nice, and check out our Code of Conduct.
Jacopo 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%2f485209%2fpackage-pgfkeys-error-what-does-it-mean%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