Custom shape shows unwanted extra lineRotate a node but not its content: the case of the ellipse...
Why didn't Tom Riddle take the presence of Fawkes and the Sorting Hat as more of a threat?
Is there any advantage in specifying './' in a for loop using a glob?
What species should be used for storage of human minds?
How to write cases in LaTeX?
Are the positive and negative planes inner or outer planes in the Great Wheel cosmology model?
Does Skippy chunky peanut butter contain trans fat?
Need help with a circuit diagram where the motor does not seem to have any connection to ground. Error with diagram? Or am i missing something?
Midterm in Mathematics Courses
Stuck on a Geometry Puzzle
How is this property called for mod?
How are the system health extended events files rolling over?
A fantasy book with seven white haired women on the cover
When obtaining gender reassignment/plastic surgery overseas, is an emergency travel document required to return home?
Is there a way to not have to poll the UART of an AVR?
Microtypography protrusion with Polish quotation marks
Could a warlock use the One with Shadows warlock invocation to turn invisible, and then move while staying invisible?
Reading Mishnayos without understanding
Plausible reason to leave the Solar System?
Critique vs nitpicking
Translation needed for 130 years old church document
Coworker asking me to not bring cakes due to self control issue. What should I do?
Why did Luke use his left hand to shoot?
Which RAF squadrons and aircraft types took part in the bombing of Berlin on the 25th of August 1940?
How much mayhem could I cause as a fish?
Custom shape shows unwanted extra line
Rotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?Numerical conditional within tikz keys?Why do I get an extra white page before my TikZ picture?TikZ: Drawing an arc from an intersection to an intersectionHow to prevent rounded and duplicated tick labels in pgfplots with fixed precision?Drawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themHow to draw a square and its diagonals with arrows?begin{figure}… end{figure} is not working with tikz package
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) -- (-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}
This is supposed to be a closed custom shape WITHOUT the straight line!

How can I get rid of this unwanted line?
Putting '-- cycle' at the end makes no difference.
tikz-pgf shapes
add a comment |
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) -- (-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}
This is supposed to be a closed custom shape WITHOUT the straight line!

How can I get rid of this unwanted line?
Putting '-- cycle' at the end makes no difference.
tikz-pgf shapes
1
You have an extra-- (-4.261,2.617)which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc:draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.
– Phelype Oleinik
2 hours ago
@PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.
– marmot
1 hour ago
add a comment |
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) -- (-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}
This is supposed to be a closed custom shape WITHOUT the straight line!

How can I get rid of this unwanted line?
Putting '-- cycle' at the end makes no difference.
tikz-pgf shapes
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) -- (-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}
This is supposed to be a closed custom shape WITHOUT the straight line!

How can I get rid of this unwanted line?
Putting '-- cycle' at the end makes no difference.
tikz-pgf shapes
tikz-pgf shapes
edited 2 hours ago
Petoetje59
asked 2 hours ago
Petoetje59Petoetje59
4021615
4021615
1
You have an extra-- (-4.261,2.617)which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc:draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.
– Phelype Oleinik
2 hours ago
@PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.
– marmot
1 hour ago
add a comment |
1
You have an extra-- (-4.261,2.617)which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc:draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.
– Phelype Oleinik
2 hours ago
@PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.
– marmot
1 hour ago
1
1
You have an extra
-- (-4.261,2.617) which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc: draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.– Phelype Oleinik
2 hours ago
You have an extra
-- (-4.261,2.617) which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc: draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.– Phelype Oleinik
2 hours ago
@PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.
– marmot
1 hour ago
@PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.
– marmot
1 hour ago
add a comment |
2 Answers
2
active
oldest
votes
I saw Phelype's comment and deleted the post. Now I am undeleting it per request. But I will be happy to delete it again. In any case, full credits go to Phelype Oleinik, who was the first to propose a solution.
In fact, I like Phelype's proposal better than "just removing the line". Here is why:
documentclass{article}
usepackage{tikz}
begin{document}
Reversing the arc:
begin{tikzpicture}
draw[fill=blue] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
arc (321.42:148.44:5);
end{tikzpicture}
Just removing the line:
begin{tikzpicture}
draw[fill=red] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}

The blue corresponds to what I would suggest, namely reversing the arc, and the red one "removing the line", which works at the level of the contour but does not yield a continuous path.
Simple but effective! Thanks.
– Petoetje59
34 mins ago
add a comment |
just remove -- from the path
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}

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%2f476653%2fcustom-shape-shows-unwanted-extra-line%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I saw Phelype's comment and deleted the post. Now I am undeleting it per request. But I will be happy to delete it again. In any case, full credits go to Phelype Oleinik, who was the first to propose a solution.
In fact, I like Phelype's proposal better than "just removing the line". Here is why:
documentclass{article}
usepackage{tikz}
begin{document}
Reversing the arc:
begin{tikzpicture}
draw[fill=blue] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
arc (321.42:148.44:5);
end{tikzpicture}
Just removing the line:
begin{tikzpicture}
draw[fill=red] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}

The blue corresponds to what I would suggest, namely reversing the arc, and the red one "removing the line", which works at the level of the contour but does not yield a continuous path.
Simple but effective! Thanks.
– Petoetje59
34 mins ago
add a comment |
I saw Phelype's comment and deleted the post. Now I am undeleting it per request. But I will be happy to delete it again. In any case, full credits go to Phelype Oleinik, who was the first to propose a solution.
In fact, I like Phelype's proposal better than "just removing the line". Here is why:
documentclass{article}
usepackage{tikz}
begin{document}
Reversing the arc:
begin{tikzpicture}
draw[fill=blue] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
arc (321.42:148.44:5);
end{tikzpicture}
Just removing the line:
begin{tikzpicture}
draw[fill=red] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}

The blue corresponds to what I would suggest, namely reversing the arc, and the red one "removing the line", which works at the level of the contour but does not yield a continuous path.
Simple but effective! Thanks.
– Petoetje59
34 mins ago
add a comment |
I saw Phelype's comment and deleted the post. Now I am undeleting it per request. But I will be happy to delete it again. In any case, full credits go to Phelype Oleinik, who was the first to propose a solution.
In fact, I like Phelype's proposal better than "just removing the line". Here is why:
documentclass{article}
usepackage{tikz}
begin{document}
Reversing the arc:
begin{tikzpicture}
draw[fill=blue] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
arc (321.42:148.44:5);
end{tikzpicture}
Just removing the line:
begin{tikzpicture}
draw[fill=red] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}

The blue corresponds to what I would suggest, namely reversing the arc, and the red one "removing the line", which works at the level of the contour but does not yield a continuous path.
I saw Phelype's comment and deleted the post. Now I am undeleting it per request. But I will be happy to delete it again. In any case, full credits go to Phelype Oleinik, who was the first to propose a solution.
In fact, I like Phelype's proposal better than "just removing the line". Here is why:
documentclass{article}
usepackage{tikz}
begin{document}
Reversing the arc:
begin{tikzpicture}
draw[fill=blue] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
arc (321.42:148.44:5);
end{tikzpicture}
Just removing the line:
begin{tikzpicture}
draw[fill=red] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}

The blue corresponds to what I would suggest, namely reversing the arc, and the red one "removing the line", which works at the level of the contour but does not yield a continuous path.
edited 57 mins ago
answered 1 hour ago
marmotmarmot
103k4123234
103k4123234
Simple but effective! Thanks.
– Petoetje59
34 mins ago
add a comment |
Simple but effective! Thanks.
– Petoetje59
34 mins ago
Simple but effective! Thanks.
– Petoetje59
34 mins ago
Simple but effective! Thanks.
– Petoetje59
34 mins ago
add a comment |
just remove -- from the path
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}

add a comment |
just remove -- from the path
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}

add a comment |
just remove -- from the path
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}

just remove -- from the path
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}

answered 2 hours ago
Hafid BoukhouldaHafid Boukhoulda
4,0971624
4,0971624
add a comment |
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%2f476653%2fcustom-shape-shows-unwanted-extra-line%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
1
You have an extra
-- (-4.261,2.617)which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc:draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.– Phelype Oleinik
2 hours ago
@PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.
– marmot
1 hour ago