Draw an little arc to indicate an angle in tikzpicture
How would you modify the following code so that I insert the arc indicated by the blue line in the diagram?
In the normal tikzpicture environment this seems to be quite straightforward, but I am unsure when it comes to graphs.
Thanks
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{pgfplots}
renewcommand{thesection}{arabic{section}}
usepackage{mathtools}
usepackage{cancel}
usepackage{pgfplots}
usepackage{amsmath}
newtheorem{theorem}{THEOREM}
newtheorem{proof}{PROOF}
usepackage{tikz}
usepackage{amssymb}
usetikzlibrary{patterns}
usepackage{fancyhdr}
usepackage{bigints}
usepackage{color}
usepackage{tcolorbox}
usepackage{color,xcolor}
usepackage{booktabs,array}
usepackage{hyperref}
usepackage{graphicx}
usetikzlibrary{arrows}
usepackage{polynom}
usepackage{wallpaper}
usetikzlibrary{shapes.geometric}
usepgfplotslibrary{fillbetween}
newenvironment{tightcenter}{
setlengthtopsep{0pt}
setlengthparskip{0pt}
begin{center}}{end{center}}
begin{document}
begin{tikzpicture}
begin{axis}[
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style=thick,
axis line style={->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
ticks=none,
xmin=-7,xmax=7,
ymin=-7,ymax=7,
clip=false
]
%
draw[black,thick](axis cs:0,0) circle (1.7cm);
%
%
node [above] at (axis cs: +0.4,0){$O$};
node [left,scale=0.9] at (axis cs: -0.5,-0.4){$theta$};
%
node [left,scale=0.9] at (axis cs: -2.4,-3.4){$(x,y)$};
%node [left] at (axis cs: 0,+1.5){$1$};
%node [left] at (axis cs: 0,-5.5){$-5$};
draw[black,thick](axis cs:0,0) -- (axis cs:-2.4,0) -- (axis cs:-2.4,-2.95) --cycle;
draw[black,thick](axis cs:-2.4,0) rectangle (axis cs:-2,-0.4);
draw[fill=black](axis cs:-2.4,-2.97) circle (0.4mm);
%
draw [thick](axis cs:0.92,2) ++(0:1) arc (185:264:0.5);
%draw [thick](axis cs:2.18,0) ++(0:1) arc (0:95:0.5);
end{axis}
end{tikzpicture}
end{document}
tikz-pgf
add a comment |
How would you modify the following code so that I insert the arc indicated by the blue line in the diagram?
In the normal tikzpicture environment this seems to be quite straightforward, but I am unsure when it comes to graphs.
Thanks
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{pgfplots}
renewcommand{thesection}{arabic{section}}
usepackage{mathtools}
usepackage{cancel}
usepackage{pgfplots}
usepackage{amsmath}
newtheorem{theorem}{THEOREM}
newtheorem{proof}{PROOF}
usepackage{tikz}
usepackage{amssymb}
usetikzlibrary{patterns}
usepackage{fancyhdr}
usepackage{bigints}
usepackage{color}
usepackage{tcolorbox}
usepackage{color,xcolor}
usepackage{booktabs,array}
usepackage{hyperref}
usepackage{graphicx}
usetikzlibrary{arrows}
usepackage{polynom}
usepackage{wallpaper}
usetikzlibrary{shapes.geometric}
usepgfplotslibrary{fillbetween}
newenvironment{tightcenter}{
setlengthtopsep{0pt}
setlengthparskip{0pt}
begin{center}}{end{center}}
begin{document}
begin{tikzpicture}
begin{axis}[
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style=thick,
axis line style={->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
ticks=none,
xmin=-7,xmax=7,
ymin=-7,ymax=7,
clip=false
]
%
draw[black,thick](axis cs:0,0) circle (1.7cm);
%
%
node [above] at (axis cs: +0.4,0){$O$};
node [left,scale=0.9] at (axis cs: -0.5,-0.4){$theta$};
%
node [left,scale=0.9] at (axis cs: -2.4,-3.4){$(x,y)$};
%node [left] at (axis cs: 0,+1.5){$1$};
%node [left] at (axis cs: 0,-5.5){$-5$};
draw[black,thick](axis cs:0,0) -- (axis cs:-2.4,0) -- (axis cs:-2.4,-2.95) --cycle;
draw[black,thick](axis cs:-2.4,0) rectangle (axis cs:-2,-0.4);
draw[fill=black](axis cs:-2.4,-2.97) circle (0.4mm);
%
draw [thick](axis cs:0.92,2) ++(0:1) arc (185:264:0.5);
%draw [thick](axis cs:2.18,0) ++(0:1) arc (0:95:0.5);
end{axis}
end{tikzpicture}
end{document}
tikz-pgf
4
There is theangles
library for that. (Or just draw the arc by usingdraw [thick](axis cs:-0.5) arc (180:222:0.5);
and if you use a reasonably recent version of pgfplots,pgfplotset{compat=1.16}
, you can drop all theaxis cs:
.)
– marmot
Mar 28 at 22:40
2
Observe that the bullet is not exactly over the circle.
– Sigur
Mar 28 at 22:47
add a comment |
How would you modify the following code so that I insert the arc indicated by the blue line in the diagram?
In the normal tikzpicture environment this seems to be quite straightforward, but I am unsure when it comes to graphs.
Thanks
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{pgfplots}
renewcommand{thesection}{arabic{section}}
usepackage{mathtools}
usepackage{cancel}
usepackage{pgfplots}
usepackage{amsmath}
newtheorem{theorem}{THEOREM}
newtheorem{proof}{PROOF}
usepackage{tikz}
usepackage{amssymb}
usetikzlibrary{patterns}
usepackage{fancyhdr}
usepackage{bigints}
usepackage{color}
usepackage{tcolorbox}
usepackage{color,xcolor}
usepackage{booktabs,array}
usepackage{hyperref}
usepackage{graphicx}
usetikzlibrary{arrows}
usepackage{polynom}
usepackage{wallpaper}
usetikzlibrary{shapes.geometric}
usepgfplotslibrary{fillbetween}
newenvironment{tightcenter}{
setlengthtopsep{0pt}
setlengthparskip{0pt}
begin{center}}{end{center}}
begin{document}
begin{tikzpicture}
begin{axis}[
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style=thick,
axis line style={->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
ticks=none,
xmin=-7,xmax=7,
ymin=-7,ymax=7,
clip=false
]
%
draw[black,thick](axis cs:0,0) circle (1.7cm);
%
%
node [above] at (axis cs: +0.4,0){$O$};
node [left,scale=0.9] at (axis cs: -0.5,-0.4){$theta$};
%
node [left,scale=0.9] at (axis cs: -2.4,-3.4){$(x,y)$};
%node [left] at (axis cs: 0,+1.5){$1$};
%node [left] at (axis cs: 0,-5.5){$-5$};
draw[black,thick](axis cs:0,0) -- (axis cs:-2.4,0) -- (axis cs:-2.4,-2.95) --cycle;
draw[black,thick](axis cs:-2.4,0) rectangle (axis cs:-2,-0.4);
draw[fill=black](axis cs:-2.4,-2.97) circle (0.4mm);
%
draw [thick](axis cs:0.92,2) ++(0:1) arc (185:264:0.5);
%draw [thick](axis cs:2.18,0) ++(0:1) arc (0:95:0.5);
end{axis}
end{tikzpicture}
end{document}
tikz-pgf
How would you modify the following code so that I insert the arc indicated by the blue line in the diagram?
In the normal tikzpicture environment this seems to be quite straightforward, but I am unsure when it comes to graphs.
Thanks
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{pgfplots}
renewcommand{thesection}{arabic{section}}
usepackage{mathtools}
usepackage{cancel}
usepackage{pgfplots}
usepackage{amsmath}
newtheorem{theorem}{THEOREM}
newtheorem{proof}{PROOF}
usepackage{tikz}
usepackage{amssymb}
usetikzlibrary{patterns}
usepackage{fancyhdr}
usepackage{bigints}
usepackage{color}
usepackage{tcolorbox}
usepackage{color,xcolor}
usepackage{booktabs,array}
usepackage{hyperref}
usepackage{graphicx}
usetikzlibrary{arrows}
usepackage{polynom}
usepackage{wallpaper}
usetikzlibrary{shapes.geometric}
usepgfplotslibrary{fillbetween}
newenvironment{tightcenter}{
setlengthtopsep{0pt}
setlengthparskip{0pt}
begin{center}}{end{center}}
begin{document}
begin{tikzpicture}
begin{axis}[
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style=thick,
axis line style={->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
ticks=none,
xmin=-7,xmax=7,
ymin=-7,ymax=7,
clip=false
]
%
draw[black,thick](axis cs:0,0) circle (1.7cm);
%
%
node [above] at (axis cs: +0.4,0){$O$};
node [left,scale=0.9] at (axis cs: -0.5,-0.4){$theta$};
%
node [left,scale=0.9] at (axis cs: -2.4,-3.4){$(x,y)$};
%node [left] at (axis cs: 0,+1.5){$1$};
%node [left] at (axis cs: 0,-5.5){$-5$};
draw[black,thick](axis cs:0,0) -- (axis cs:-2.4,0) -- (axis cs:-2.4,-2.95) --cycle;
draw[black,thick](axis cs:-2.4,0) rectangle (axis cs:-2,-0.4);
draw[fill=black](axis cs:-2.4,-2.97) circle (0.4mm);
%
draw [thick](axis cs:0.92,2) ++(0:1) arc (185:264:0.5);
%draw [thick](axis cs:2.18,0) ++(0:1) arc (0:95:0.5);
end{axis}
end{tikzpicture}
end{document}
tikz-pgf
tikz-pgf
asked Mar 28 at 22:38
Will KimWill Kim
792519
792519
4
There is theangles
library for that. (Or just draw the arc by usingdraw [thick](axis cs:-0.5) arc (180:222:0.5);
and if you use a reasonably recent version of pgfplots,pgfplotset{compat=1.16}
, you can drop all theaxis cs:
.)
– marmot
Mar 28 at 22:40
2
Observe that the bullet is not exactly over the circle.
– Sigur
Mar 28 at 22:47
add a comment |
4
There is theangles
library for that. (Or just draw the arc by usingdraw [thick](axis cs:-0.5) arc (180:222:0.5);
and if you use a reasonably recent version of pgfplots,pgfplotset{compat=1.16}
, you can drop all theaxis cs:
.)
– marmot
Mar 28 at 22:40
2
Observe that the bullet is not exactly over the circle.
– Sigur
Mar 28 at 22:47
4
4
There is the
angles
library for that. (Or just draw the arc by using draw [thick](axis cs:-0.5) arc (180:222:0.5);
and if you use a reasonably recent version of pgfplots, pgfplotset{compat=1.16}
, you can drop all the axis cs:
.)– marmot
Mar 28 at 22:40
There is the
angles
library for that. (Or just draw the arc by using draw [thick](axis cs:-0.5) arc (180:222:0.5);
and if you use a reasonably recent version of pgfplots, pgfplotset{compat=1.16}
, you can drop all the axis cs:
.)– marmot
Mar 28 at 22:40
2
2
Observe that the bullet is not exactly over the circle.
– Sigur
Mar 28 at 22:47
Observe that the bullet is not exactly over the circle.
– Sigur
Mar 28 at 22:47
add a comment |
1 Answer
1
active
oldest
votes
Sorry, there was a typo in my comment, it should have been draw [thick](axis cs:-0.5,0) arc (180:222:0.5);
, i.e. a ,0
was missing. Here is the version using the angles
library.
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{pgfplots}
pgfplotsset{compat=1.16}
usetikzlibrary{angles,quotes}
begin{document}
begin{tikzpicture}
begin{axis}[
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style=thick,
axis line style={->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
ticks=none,
xmin=-7,xmax=7,
ymin=-7,ymax=7,
clip=false
]
%
draw[black,thick](0,0) coordinate (O) circle (1.7cm);
%
%
node [above] at ( +0.4,0){$O$};
%
node [left,scale=0.9] at ( -2.4,-3.4){$(x,y)$};
%node [left] at ( 0,+1.5){$1$};
%node [left] at ( 0,-5.5){$-5$};
draw[black,thick](0,0) -- (-2.4,0) coordinate (X) --
(-2.4,-2.95) coordinate (xy) --cycle;
draw[black,thick](-2.4,0) rectangle (-2,-0.4);
draw[fill=black](-2.4,-2.97) circle (0.4mm);
%
draw [thick](0.92,2) ++(0:1) arc (185:264:0.5);
%draw [thick](2.18,0) ++(0:1) arc (0:95:0.5);
path pic [draw,angle radius=0.5cm,"{$theta$}",angle eccentricity=1.5] {angle =
X--O--xy};
end{axis}
end{tikzpicture}
end{document}
1
Thank you so much! :)
– Will Kim
Mar 29 at 5:20
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%2f482001%2fdraw-an-little-arc-to-indicate-an-angle-in-tikzpicture%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
Sorry, there was a typo in my comment, it should have been draw [thick](axis cs:-0.5,0) arc (180:222:0.5);
, i.e. a ,0
was missing. Here is the version using the angles
library.
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{pgfplots}
pgfplotsset{compat=1.16}
usetikzlibrary{angles,quotes}
begin{document}
begin{tikzpicture}
begin{axis}[
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style=thick,
axis line style={->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
ticks=none,
xmin=-7,xmax=7,
ymin=-7,ymax=7,
clip=false
]
%
draw[black,thick](0,0) coordinate (O) circle (1.7cm);
%
%
node [above] at ( +0.4,0){$O$};
%
node [left,scale=0.9] at ( -2.4,-3.4){$(x,y)$};
%node [left] at ( 0,+1.5){$1$};
%node [left] at ( 0,-5.5){$-5$};
draw[black,thick](0,0) -- (-2.4,0) coordinate (X) --
(-2.4,-2.95) coordinate (xy) --cycle;
draw[black,thick](-2.4,0) rectangle (-2,-0.4);
draw[fill=black](-2.4,-2.97) circle (0.4mm);
%
draw [thick](0.92,2) ++(0:1) arc (185:264:0.5);
%draw [thick](2.18,0) ++(0:1) arc (0:95:0.5);
path pic [draw,angle radius=0.5cm,"{$theta$}",angle eccentricity=1.5] {angle =
X--O--xy};
end{axis}
end{tikzpicture}
end{document}
1
Thank you so much! :)
– Will Kim
Mar 29 at 5:20
add a comment |
Sorry, there was a typo in my comment, it should have been draw [thick](axis cs:-0.5,0) arc (180:222:0.5);
, i.e. a ,0
was missing. Here is the version using the angles
library.
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{pgfplots}
pgfplotsset{compat=1.16}
usetikzlibrary{angles,quotes}
begin{document}
begin{tikzpicture}
begin{axis}[
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style=thick,
axis line style={->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
ticks=none,
xmin=-7,xmax=7,
ymin=-7,ymax=7,
clip=false
]
%
draw[black,thick](0,0) coordinate (O) circle (1.7cm);
%
%
node [above] at ( +0.4,0){$O$};
%
node [left,scale=0.9] at ( -2.4,-3.4){$(x,y)$};
%node [left] at ( 0,+1.5){$1$};
%node [left] at ( 0,-5.5){$-5$};
draw[black,thick](0,0) -- (-2.4,0) coordinate (X) --
(-2.4,-2.95) coordinate (xy) --cycle;
draw[black,thick](-2.4,0) rectangle (-2,-0.4);
draw[fill=black](-2.4,-2.97) circle (0.4mm);
%
draw [thick](0.92,2) ++(0:1) arc (185:264:0.5);
%draw [thick](2.18,0) ++(0:1) arc (0:95:0.5);
path pic [draw,angle radius=0.5cm,"{$theta$}",angle eccentricity=1.5] {angle =
X--O--xy};
end{axis}
end{tikzpicture}
end{document}
1
Thank you so much! :)
– Will Kim
Mar 29 at 5:20
add a comment |
Sorry, there was a typo in my comment, it should have been draw [thick](axis cs:-0.5,0) arc (180:222:0.5);
, i.e. a ,0
was missing. Here is the version using the angles
library.
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{pgfplots}
pgfplotsset{compat=1.16}
usetikzlibrary{angles,quotes}
begin{document}
begin{tikzpicture}
begin{axis}[
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style=thick,
axis line style={->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
ticks=none,
xmin=-7,xmax=7,
ymin=-7,ymax=7,
clip=false
]
%
draw[black,thick](0,0) coordinate (O) circle (1.7cm);
%
%
node [above] at ( +0.4,0){$O$};
%
node [left,scale=0.9] at ( -2.4,-3.4){$(x,y)$};
%node [left] at ( 0,+1.5){$1$};
%node [left] at ( 0,-5.5){$-5$};
draw[black,thick](0,0) -- (-2.4,0) coordinate (X) --
(-2.4,-2.95) coordinate (xy) --cycle;
draw[black,thick](-2.4,0) rectangle (-2,-0.4);
draw[fill=black](-2.4,-2.97) circle (0.4mm);
%
draw [thick](0.92,2) ++(0:1) arc (185:264:0.5);
%draw [thick](2.18,0) ++(0:1) arc (0:95:0.5);
path pic [draw,angle radius=0.5cm,"{$theta$}",angle eccentricity=1.5] {angle =
X--O--xy};
end{axis}
end{tikzpicture}
end{document}
Sorry, there was a typo in my comment, it should have been draw [thick](axis cs:-0.5,0) arc (180:222:0.5);
, i.e. a ,0
was missing. Here is the version using the angles
library.
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{pgfplots}
pgfplotsset{compat=1.16}
usetikzlibrary{angles,quotes}
begin{document}
begin{tikzpicture}
begin{axis}[
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style=thick,
axis line style={->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
ticks=none,
xmin=-7,xmax=7,
ymin=-7,ymax=7,
clip=false
]
%
draw[black,thick](0,0) coordinate (O) circle (1.7cm);
%
%
node [above] at ( +0.4,0){$O$};
%
node [left,scale=0.9] at ( -2.4,-3.4){$(x,y)$};
%node [left] at ( 0,+1.5){$1$};
%node [left] at ( 0,-5.5){$-5$};
draw[black,thick](0,0) -- (-2.4,0) coordinate (X) --
(-2.4,-2.95) coordinate (xy) --cycle;
draw[black,thick](-2.4,0) rectangle (-2,-0.4);
draw[fill=black](-2.4,-2.97) circle (0.4mm);
%
draw [thick](0.92,2) ++(0:1) arc (185:264:0.5);
%draw [thick](2.18,0) ++(0:1) arc (0:95:0.5);
path pic [draw,angle radius=0.5cm,"{$theta$}",angle eccentricity=1.5] {angle =
X--O--xy};
end{axis}
end{tikzpicture}
end{document}
answered Mar 29 at 4:51
marmotmarmot
116k5146277
116k5146277
1
Thank you so much! :)
– Will Kim
Mar 29 at 5:20
add a comment |
1
Thank you so much! :)
– Will Kim
Mar 29 at 5:20
1
1
Thank you so much! :)
– Will Kim
Mar 29 at 5:20
Thank you so much! :)
– Will Kim
Mar 29 at 5:20
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%2f482001%2fdraw-an-little-arc-to-indicate-an-angle-in-tikzpicture%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
4
There is the
angles
library for that. (Or just draw the arc by usingdraw [thick](axis cs:-0.5) arc (180:222:0.5);
and if you use a reasonably recent version of pgfplots,pgfplotset{compat=1.16}
, you can drop all theaxis cs:
.)– marmot
Mar 28 at 22:40
2
Observe that the bullet is not exactly over the circle.
– Sigur
Mar 28 at 22:47