Drawing graphs in Latex using documentclass “memoir” [closed]Modeling a (rather silly) magnet problem using graphsDrawing simple graphs using graph theoryShowing two graphs isomorphic using their adjacency matricesDrawing graphs (vertices and edges) with or without technologyDrawing Planar Graphsdrawing non-isomorphic graphsIs Euler's formula in planar graphs proved not using induction?Drawing simple graphs from the degree of three verticesGraph theory drawing non isomorphic graphsModeling problems using graphs
GFCI outlets - can they be repaired? Are they really needed at the end of a circuit?
Is it "common practice in Fourier transform spectroscopy to multiply the measured interferogram by an apodizing function"? If so, why?
Why are UK visa biometrics appointments suspended at USCIS Application Support Centers?
Does the Idaho Potato Commission associate potato skins with healthy eating?
Convert seconds to minutes
Were days ever written as ordinal numbers when writing day-month-year?
Are British MPs missing the point, with these 'Indicative Votes'?
Is this draw by repetition?
In Bayesian inference, why are some terms dropped from the posterior predictive?
How to coordinate airplane tickets?
Forgetting the musical notes while performing in concert
Knowledge-based authentication using Domain-driven Design in C#
Can someone clarify Hamming's notion of important problems in relation to modern academia?
What is an equivalently powerful replacement spell for Yuan-Ti's Suggestion spell?
How badly should I try to prevent a user from XSSing themselves?
How to show a landlord what we have in savings?
How could indestructible materials be used in power generation?
OP Amp not amplifying audio signal
What is the fastest integer factorization to break RSA?
Unlock My Phone! February 2018
Why were 5.25" floppy drives cheaper than 8"?
Sums of two squares in arithmetic progressions
What does the same-ish mean?
Implication of namely
Drawing graphs in Latex using documentclass “memoir” [closed]
Modeling a (rather silly) magnet problem using graphsDrawing simple graphs using graph theoryShowing two graphs isomorphic using their adjacency matricesDrawing graphs (vertices and edges) with or without technologyDrawing Planar Graphsdrawing non-isomorphic graphsIs Euler's formula in planar graphs proved not using induction?Drawing simple graphs from the degree of three verticesGraph theory drawing non isomorphic graphsModeling problems using graphs
$begingroup$
I am using "memoir" in Latex to draw graphs. I am getting errors. Can anyone tell me what I am doing wrong in the following?
documentclass[a4paper,twoside,oldfontcommands,12pt]memoir
%%% INCLUDE THE PACKAGES
usepackage[utf8x]inputenc
usepackagea4wide
usepackagegraphicx
usepackageamssymb,amsmath,amsthm
usepackageamssymb, hyperref
usepackageepsfig,graphicx
usepackagetikz
usepackagetikz-cd
tikzsetnode distance=2cm, auto
usepackagehyperref
usetikzlibrarygraphs
usetikzlibrarybackgrounds
usepackagemulticol
usetikzlibraryarrows,decorations.markings
usepackagecalc,graphicx,soul
begindocument
begintikzpicture[scale=4, every loop/.style=]
vertex[fill] (1) at (.2, 0) [label=below:1] ;
vertex [fill](2) at (0,.2) [label=left:2] ;
vertex[fill] (3) at (.2,.4) [label=above:3] ;
vertex[fill] (4) at (.4,.4) [label=above:4] ;
vertex[fill] (5) at (.4, 0) [label=below:5] ;
vertex [fill](6) at (.6,.2) [label=right:6] ;
vertex[fill] (7) at (1.2, 0) [label=below:1] ;
vertex [fill](8) at (1,.2) [label=left:2] ;
vertex[fill] (9) at (1.2,.4) [label=above:3] ;
vertex[fill] (10) at (1.4,.4) [label=above:4] ;
vertex[fill] (11) at (1.6, .2) [label=right:6] ;
vertex [fill](12) at (1.4,0) [label=below:5] ;
vertex[fill] (13) at (2.2, 0) [label=below:1] ;
vertex [fill](14) at (2,.2) [label=left:2] ;
vertex[fill] (15) at (2.2,.4) [label=above:3];
vertex[fill] (16) at (2.4,.4) [label=above:4] ;
vertex[fill] (17) at (2.6,.2) [label=right: 6] ;
vertex [fill](18) at (2.4,0) [label=below:5] ;
path
(1) edge (2)
(1) edge (3)
(2) edge (3)
(4) edge (5)
(4) edge (6)
(5) edge (6)
(7) edge (8)
(8) edge (9)
(9) edge (10)
(7) edge (12)
(10) edge (11)
(11) edge (12)
(13) edge (14)
(14) edge (15)
(15) edge (18)
(13) edge (16)
(16) edge (17)
(17) edge (18)
;
endtikzpicture
enddocument
graph-theory
New contributor
a.nayek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
closed as off-topic by Rahul, YiFan, Claude Leibovici, max_zorn, Strants Mar 28 at 20:32
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about mathematics, within the scope defined in the help center." – Rahul, YiFan, Claude Leibovici, max_zorn, Strants
add a comment |
$begingroup$
I am using "memoir" in Latex to draw graphs. I am getting errors. Can anyone tell me what I am doing wrong in the following?
documentclass[a4paper,twoside,oldfontcommands,12pt]memoir
%%% INCLUDE THE PACKAGES
usepackage[utf8x]inputenc
usepackagea4wide
usepackagegraphicx
usepackageamssymb,amsmath,amsthm
usepackageamssymb, hyperref
usepackageepsfig,graphicx
usepackagetikz
usepackagetikz-cd
tikzsetnode distance=2cm, auto
usepackagehyperref
usetikzlibrarygraphs
usetikzlibrarybackgrounds
usepackagemulticol
usetikzlibraryarrows,decorations.markings
usepackagecalc,graphicx,soul
begindocument
begintikzpicture[scale=4, every loop/.style=]
vertex[fill] (1) at (.2, 0) [label=below:1] ;
vertex [fill](2) at (0,.2) [label=left:2] ;
vertex[fill] (3) at (.2,.4) [label=above:3] ;
vertex[fill] (4) at (.4,.4) [label=above:4] ;
vertex[fill] (5) at (.4, 0) [label=below:5] ;
vertex [fill](6) at (.6,.2) [label=right:6] ;
vertex[fill] (7) at (1.2, 0) [label=below:1] ;
vertex [fill](8) at (1,.2) [label=left:2] ;
vertex[fill] (9) at (1.2,.4) [label=above:3] ;
vertex[fill] (10) at (1.4,.4) [label=above:4] ;
vertex[fill] (11) at (1.6, .2) [label=right:6] ;
vertex [fill](12) at (1.4,0) [label=below:5] ;
vertex[fill] (13) at (2.2, 0) [label=below:1] ;
vertex [fill](14) at (2,.2) [label=left:2] ;
vertex[fill] (15) at (2.2,.4) [label=above:3];
vertex[fill] (16) at (2.4,.4) [label=above:4] ;
vertex[fill] (17) at (2.6,.2) [label=right: 6] ;
vertex [fill](18) at (2.4,0) [label=below:5] ;
path
(1) edge (2)
(1) edge (3)
(2) edge (3)
(4) edge (5)
(4) edge (6)
(5) edge (6)
(7) edge (8)
(8) edge (9)
(9) edge (10)
(7) edge (12)
(10) edge (11)
(11) edge (12)
(13) edge (14)
(14) edge (15)
(15) edge (18)
(13) edge (16)
(16) edge (17)
(17) edge (18)
;
endtikzpicture
enddocument
graph-theory
New contributor
a.nayek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
closed as off-topic by Rahul, YiFan, Claude Leibovici, max_zorn, Strants Mar 28 at 20:32
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about mathematics, within the scope defined in the help center." – Rahul, YiFan, Claude Leibovici, max_zorn, Strants
4
$begingroup$
You should ask this on tex.stackexchange.com instead. But trim down your code to create a minimal example first.
$endgroup$
– Rahul
Mar 28 at 14:48
add a comment |
$begingroup$
I am using "memoir" in Latex to draw graphs. I am getting errors. Can anyone tell me what I am doing wrong in the following?
documentclass[a4paper,twoside,oldfontcommands,12pt]memoir
%%% INCLUDE THE PACKAGES
usepackage[utf8x]inputenc
usepackagea4wide
usepackagegraphicx
usepackageamssymb,amsmath,amsthm
usepackageamssymb, hyperref
usepackageepsfig,graphicx
usepackagetikz
usepackagetikz-cd
tikzsetnode distance=2cm, auto
usepackagehyperref
usetikzlibrarygraphs
usetikzlibrarybackgrounds
usepackagemulticol
usetikzlibraryarrows,decorations.markings
usepackagecalc,graphicx,soul
begindocument
begintikzpicture[scale=4, every loop/.style=]
vertex[fill] (1) at (.2, 0) [label=below:1] ;
vertex [fill](2) at (0,.2) [label=left:2] ;
vertex[fill] (3) at (.2,.4) [label=above:3] ;
vertex[fill] (4) at (.4,.4) [label=above:4] ;
vertex[fill] (5) at (.4, 0) [label=below:5] ;
vertex [fill](6) at (.6,.2) [label=right:6] ;
vertex[fill] (7) at (1.2, 0) [label=below:1] ;
vertex [fill](8) at (1,.2) [label=left:2] ;
vertex[fill] (9) at (1.2,.4) [label=above:3] ;
vertex[fill] (10) at (1.4,.4) [label=above:4] ;
vertex[fill] (11) at (1.6, .2) [label=right:6] ;
vertex [fill](12) at (1.4,0) [label=below:5] ;
vertex[fill] (13) at (2.2, 0) [label=below:1] ;
vertex [fill](14) at (2,.2) [label=left:2] ;
vertex[fill] (15) at (2.2,.4) [label=above:3];
vertex[fill] (16) at (2.4,.4) [label=above:4] ;
vertex[fill] (17) at (2.6,.2) [label=right: 6] ;
vertex [fill](18) at (2.4,0) [label=below:5] ;
path
(1) edge (2)
(1) edge (3)
(2) edge (3)
(4) edge (5)
(4) edge (6)
(5) edge (6)
(7) edge (8)
(8) edge (9)
(9) edge (10)
(7) edge (12)
(10) edge (11)
(11) edge (12)
(13) edge (14)
(14) edge (15)
(15) edge (18)
(13) edge (16)
(16) edge (17)
(17) edge (18)
;
endtikzpicture
enddocument
graph-theory
New contributor
a.nayek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
I am using "memoir" in Latex to draw graphs. I am getting errors. Can anyone tell me what I am doing wrong in the following?
documentclass[a4paper,twoside,oldfontcommands,12pt]memoir
%%% INCLUDE THE PACKAGES
usepackage[utf8x]inputenc
usepackagea4wide
usepackagegraphicx
usepackageamssymb,amsmath,amsthm
usepackageamssymb, hyperref
usepackageepsfig,graphicx
usepackagetikz
usepackagetikz-cd
tikzsetnode distance=2cm, auto
usepackagehyperref
usetikzlibrarygraphs
usetikzlibrarybackgrounds
usepackagemulticol
usetikzlibraryarrows,decorations.markings
usepackagecalc,graphicx,soul
begindocument
begintikzpicture[scale=4, every loop/.style=]
vertex[fill] (1) at (.2, 0) [label=below:1] ;
vertex [fill](2) at (0,.2) [label=left:2] ;
vertex[fill] (3) at (.2,.4) [label=above:3] ;
vertex[fill] (4) at (.4,.4) [label=above:4] ;
vertex[fill] (5) at (.4, 0) [label=below:5] ;
vertex [fill](6) at (.6,.2) [label=right:6] ;
vertex[fill] (7) at (1.2, 0) [label=below:1] ;
vertex [fill](8) at (1,.2) [label=left:2] ;
vertex[fill] (9) at (1.2,.4) [label=above:3] ;
vertex[fill] (10) at (1.4,.4) [label=above:4] ;
vertex[fill] (11) at (1.6, .2) [label=right:6] ;
vertex [fill](12) at (1.4,0) [label=below:5] ;
vertex[fill] (13) at (2.2, 0) [label=below:1] ;
vertex [fill](14) at (2,.2) [label=left:2] ;
vertex[fill] (15) at (2.2,.4) [label=above:3];
vertex[fill] (16) at (2.4,.4) [label=above:4] ;
vertex[fill] (17) at (2.6,.2) [label=right: 6] ;
vertex [fill](18) at (2.4,0) [label=below:5] ;
path
(1) edge (2)
(1) edge (3)
(2) edge (3)
(4) edge (5)
(4) edge (6)
(5) edge (6)
(7) edge (8)
(8) edge (9)
(9) edge (10)
(7) edge (12)
(10) edge (11)
(11) edge (12)
(13) edge (14)
(14) edge (15)
(15) edge (18)
(13) edge (16)
(16) edge (17)
(17) edge (18)
;
endtikzpicture
enddocument
graph-theory
graph-theory
New contributor
a.nayek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
a.nayek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
a.nayek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Mar 28 at 14:44
a.nayeka.nayek
11
11
New contributor
a.nayek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
a.nayek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
a.nayek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
closed as off-topic by Rahul, YiFan, Claude Leibovici, max_zorn, Strants Mar 28 at 20:32
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about mathematics, within the scope defined in the help center." – Rahul, YiFan, Claude Leibovici, max_zorn, Strants
closed as off-topic by Rahul, YiFan, Claude Leibovici, max_zorn, Strants Mar 28 at 20:32
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about mathematics, within the scope defined in the help center." – Rahul, YiFan, Claude Leibovici, max_zorn, Strants
4
$begingroup$
You should ask this on tex.stackexchange.com instead. But trim down your code to create a minimal example first.
$endgroup$
– Rahul
Mar 28 at 14:48
add a comment |
4
$begingroup$
You should ask this on tex.stackexchange.com instead. But trim down your code to create a minimal example first.
$endgroup$
– Rahul
Mar 28 at 14:48
4
4
$begingroup$
You should ask this on tex.stackexchange.com instead. But trim down your code to create a minimal example first.
$endgroup$
– Rahul
Mar 28 at 14:48
$begingroup$
You should ask this on tex.stackexchange.com instead. But trim down your code to create a minimal example first.
$endgroup$
– Rahul
Mar 28 at 14:48
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
4
$begingroup$
You should ask this on tex.stackexchange.com instead. But trim down your code to create a minimal example first.
$endgroup$
– Rahul
Mar 28 at 14:48