How to create a vertex at the intersection of two edges with tkz-graph?
I want to draw
But I don't know how to create v_6
which is the intersection of Edge(v_3)(v_5)
& Edge(v_1)(v_4)
and v_7
is the intersection of Edge(v_3)(v_5)
& Edge(v_2)(v_4)
.
Here the code for the pentagram
documentclass{standalone}
usepackage{tikz,tkz-graph,tkz-berge}
%usetikzlibrary{positioning,fit,patterns}
begin{document}
begin{tikzpicture}[rotate=90]
GraphInit[vstyle=Classic]
tikzset{VertexStyle/.append style={minimum size=3pt, inner sep=3pt}}
Vertices[Math,Lpos=90,unit=2]{circle}{v_1,v_2,v_3,v_4,v_5}
Edges(v_1,v_2,v_3,v_4,v_5,v_1)
Edges(v_1,v_3,v_5,v_2,v_4,v_1)
%WE[Math,Lpos=90,unit=2.75](v_1){v_7} % Brutal
%SOEA[Math,Lpos=0,unit=.5](v_7){v_6}
end{tikzpicture}
end{document}
tikz-pgf graphs intersections tkz-graph
add a comment |
I want to draw
But I don't know how to create v_6
which is the intersection of Edge(v_3)(v_5)
& Edge(v_1)(v_4)
and v_7
is the intersection of Edge(v_3)(v_5)
& Edge(v_2)(v_4)
.
Here the code for the pentagram
documentclass{standalone}
usepackage{tikz,tkz-graph,tkz-berge}
%usetikzlibrary{positioning,fit,patterns}
begin{document}
begin{tikzpicture}[rotate=90]
GraphInit[vstyle=Classic]
tikzset{VertexStyle/.append style={minimum size=3pt, inner sep=3pt}}
Vertices[Math,Lpos=90,unit=2]{circle}{v_1,v_2,v_3,v_4,v_5}
Edges(v_1,v_2,v_3,v_4,v_5,v_1)
Edges(v_1,v_3,v_5,v_2,v_4,v_1)
%WE[Math,Lpos=90,unit=2.75](v_1){v_7} % Brutal
%SOEA[Math,Lpos=0,unit=.5](v_7){v_6}
end{tikzpicture}
end{document}
tikz-pgf graphs intersections tkz-graph
add a comment |
I want to draw
But I don't know how to create v_6
which is the intersection of Edge(v_3)(v_5)
& Edge(v_1)(v_4)
and v_7
is the intersection of Edge(v_3)(v_5)
& Edge(v_2)(v_4)
.
Here the code for the pentagram
documentclass{standalone}
usepackage{tikz,tkz-graph,tkz-berge}
%usetikzlibrary{positioning,fit,patterns}
begin{document}
begin{tikzpicture}[rotate=90]
GraphInit[vstyle=Classic]
tikzset{VertexStyle/.append style={minimum size=3pt, inner sep=3pt}}
Vertices[Math,Lpos=90,unit=2]{circle}{v_1,v_2,v_3,v_4,v_5}
Edges(v_1,v_2,v_3,v_4,v_5,v_1)
Edges(v_1,v_3,v_5,v_2,v_4,v_1)
%WE[Math,Lpos=90,unit=2.75](v_1){v_7} % Brutal
%SOEA[Math,Lpos=0,unit=.5](v_7){v_6}
end{tikzpicture}
end{document}
tikz-pgf graphs intersections tkz-graph
I want to draw
But I don't know how to create v_6
which is the intersection of Edge(v_3)(v_5)
& Edge(v_1)(v_4)
and v_7
is the intersection of Edge(v_3)(v_5)
& Edge(v_2)(v_4)
.
Here the code for the pentagram
documentclass{standalone}
usepackage{tikz,tkz-graph,tkz-berge}
%usetikzlibrary{positioning,fit,patterns}
begin{document}
begin{tikzpicture}[rotate=90]
GraphInit[vstyle=Classic]
tikzset{VertexStyle/.append style={minimum size=3pt, inner sep=3pt}}
Vertices[Math,Lpos=90,unit=2]{circle}{v_1,v_2,v_3,v_4,v_5}
Edges(v_1,v_2,v_3,v_4,v_5,v_1)
Edges(v_1,v_3,v_5,v_2,v_4,v_1)
%WE[Math,Lpos=90,unit=2.75](v_1){v_7} % Brutal
%SOEA[Math,Lpos=0,unit=.5](v_7){v_6}
end{tikzpicture}
end{document}
tikz-pgf graphs intersections tkz-graph
tikz-pgf graphs intersections tkz-graph
asked 2 hours ago
marya
1,22711023
1,22711023
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I would do
documentclass[tikz]{standalone}
usetikzlibrary{shapes.geometric, intersections}
begin{document}
begin{tikzpicture}
node[draw, minimum size = 3cm, regular polygon, regular polygon sides = 5] (a) {};
foreach x in {1,2,...,5}
fill (a.corner x) circle [radius=2pt];
draw (a.corner 1) node[above] {$v_1$};
draw (a.corner 2) node[left] {$v_2$};
draw (a.corner 3) node[below] {$v_3$};
draw (a.corner 4) node[below] {$v_4$};
draw (a.corner 5) node[right] {$v_5$};
draw (a.corner 1)--(a.corner 3);
draw (a.corner 2)--(a.corner 5);
draw [name path = seg1] (a.corner 2)--(a.corner 4);
draw [name path = seg2] (a.corner 1)--(a.corner 4);
draw [name path = comm] (a.corner 3)--(a.corner 5);
path [name intersections = {of = seg1 and comm, by = inter1}];
fill (inter1) circle [radius = 2pt];
draw (inter1) node[below] {$v_7$};
path [name intersections = {of = seg2 and comm, by = inter2}];
fill (inter2) circle [radius = 2pt];
draw (inter2) node[below right] {$v_6$};
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%2f467141%2fhow-to-create-a-vertex-at-the-intersection-of-two-edges-with-tkz-graph%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 would do
documentclass[tikz]{standalone}
usetikzlibrary{shapes.geometric, intersections}
begin{document}
begin{tikzpicture}
node[draw, minimum size = 3cm, regular polygon, regular polygon sides = 5] (a) {};
foreach x in {1,2,...,5}
fill (a.corner x) circle [radius=2pt];
draw (a.corner 1) node[above] {$v_1$};
draw (a.corner 2) node[left] {$v_2$};
draw (a.corner 3) node[below] {$v_3$};
draw (a.corner 4) node[below] {$v_4$};
draw (a.corner 5) node[right] {$v_5$};
draw (a.corner 1)--(a.corner 3);
draw (a.corner 2)--(a.corner 5);
draw [name path = seg1] (a.corner 2)--(a.corner 4);
draw [name path = seg2] (a.corner 1)--(a.corner 4);
draw [name path = comm] (a.corner 3)--(a.corner 5);
path [name intersections = {of = seg1 and comm, by = inter1}];
fill (inter1) circle [radius = 2pt];
draw (inter1) node[below] {$v_7$};
path [name intersections = {of = seg2 and comm, by = inter2}];
fill (inter2) circle [radius = 2pt];
draw (inter2) node[below right] {$v_6$};
end{tikzpicture}
end{document}
add a comment |
I would do
documentclass[tikz]{standalone}
usetikzlibrary{shapes.geometric, intersections}
begin{document}
begin{tikzpicture}
node[draw, minimum size = 3cm, regular polygon, regular polygon sides = 5] (a) {};
foreach x in {1,2,...,5}
fill (a.corner x) circle [radius=2pt];
draw (a.corner 1) node[above] {$v_1$};
draw (a.corner 2) node[left] {$v_2$};
draw (a.corner 3) node[below] {$v_3$};
draw (a.corner 4) node[below] {$v_4$};
draw (a.corner 5) node[right] {$v_5$};
draw (a.corner 1)--(a.corner 3);
draw (a.corner 2)--(a.corner 5);
draw [name path = seg1] (a.corner 2)--(a.corner 4);
draw [name path = seg2] (a.corner 1)--(a.corner 4);
draw [name path = comm] (a.corner 3)--(a.corner 5);
path [name intersections = {of = seg1 and comm, by = inter1}];
fill (inter1) circle [radius = 2pt];
draw (inter1) node[below] {$v_7$};
path [name intersections = {of = seg2 and comm, by = inter2}];
fill (inter2) circle [radius = 2pt];
draw (inter2) node[below right] {$v_6$};
end{tikzpicture}
end{document}
add a comment |
I would do
documentclass[tikz]{standalone}
usetikzlibrary{shapes.geometric, intersections}
begin{document}
begin{tikzpicture}
node[draw, minimum size = 3cm, regular polygon, regular polygon sides = 5] (a) {};
foreach x in {1,2,...,5}
fill (a.corner x) circle [radius=2pt];
draw (a.corner 1) node[above] {$v_1$};
draw (a.corner 2) node[left] {$v_2$};
draw (a.corner 3) node[below] {$v_3$};
draw (a.corner 4) node[below] {$v_4$};
draw (a.corner 5) node[right] {$v_5$};
draw (a.corner 1)--(a.corner 3);
draw (a.corner 2)--(a.corner 5);
draw [name path = seg1] (a.corner 2)--(a.corner 4);
draw [name path = seg2] (a.corner 1)--(a.corner 4);
draw [name path = comm] (a.corner 3)--(a.corner 5);
path [name intersections = {of = seg1 and comm, by = inter1}];
fill (inter1) circle [radius = 2pt];
draw (inter1) node[below] {$v_7$};
path [name intersections = {of = seg2 and comm, by = inter2}];
fill (inter2) circle [radius = 2pt];
draw (inter2) node[below right] {$v_6$};
end{tikzpicture}
end{document}
I would do
documentclass[tikz]{standalone}
usetikzlibrary{shapes.geometric, intersections}
begin{document}
begin{tikzpicture}
node[draw, minimum size = 3cm, regular polygon, regular polygon sides = 5] (a) {};
foreach x in {1,2,...,5}
fill (a.corner x) circle [radius=2pt];
draw (a.corner 1) node[above] {$v_1$};
draw (a.corner 2) node[left] {$v_2$};
draw (a.corner 3) node[below] {$v_3$};
draw (a.corner 4) node[below] {$v_4$};
draw (a.corner 5) node[right] {$v_5$};
draw (a.corner 1)--(a.corner 3);
draw (a.corner 2)--(a.corner 5);
draw [name path = seg1] (a.corner 2)--(a.corner 4);
draw [name path = seg2] (a.corner 1)--(a.corner 4);
draw [name path = comm] (a.corner 3)--(a.corner 5);
path [name intersections = {of = seg1 and comm, by = inter1}];
fill (inter1) circle [radius = 2pt];
draw (inter1) node[below] {$v_7$};
path [name intersections = {of = seg2 and comm, by = inter2}];
fill (inter2) circle [radius = 2pt];
draw (inter2) node[below right] {$v_6$};
end{tikzpicture}
end{document}
answered 1 hour ago
JouleV
1,843425
1,843425
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f467141%2fhow-to-create-a-vertex-at-the-intersection-of-two-edges-with-tkz-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