Create more space between each arrow between nodes Announcing the arrival of Valued Associate...
Did war bonds have better investment alternatives during WWII?
What is a 'Key' in computer science?
Is there a way to fake a method response using Mock or Stubs?
When speaking, how do you change your mind mid-sentence?
Was Objective-C really a hindrance to Apple software development?
Why aren't road bicycle wheels tiny?
Determinant of a matrix with 2 equal rows
When does Bran Stark remember Jamie pushing him?
How to keep bees out of canned beverages?
France's Public Holidays' Puzzle
Not within Jobscope - Aggravated injury
Cisco DHCP Router
What is the purpose of the side handle on a hand ("eggbeater") drill?
Translate text contents of an existing file from lower to upper case and copy to a new file
Putting Ant-Man on house arrest
Specify the range of GridLines
Are there existing rules/lore for MTG planeswalkers?
Is Bran literally the world's memory?
What's parked in Mil Moscow helicopter plant?
What were wait-states, and why was it only an issue for PCs?
Can gravitational waves pass through a black hole?
Where to find documentation for `whois` command options?
Why did Europeans not widely domesticate foxes?
Is it OK if I do not take the receipt in Germany?
Create more space between each arrow between nodes
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)LaTeX equivalent of ConTeXt buffersRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?Sinuous arrow between nodesNumerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themDraw an arrow between nodesHow to draw a square and its diagonals with arrows?
How can I make the arrows I draw slightly fatter arrows that are also further apart from each node I have?
edit: Is there also a better way then searching TexStackExchange to figuring this stuff on my own (like a popular reference manual?)

documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{tikz}
begin{document}
centering
begin{tikzpicture}
[scale=1.3,auto=left,every node/.style={rectangle,fill=blue!20}]
node (n8) at (1,10) {FGWC / / };
node (n7) at (1,8) {WC / $rightarrow$ / FG};
node (n6) at (1,6) {WCF / $leftarrow$ / G};
node (n5) at (1,4) {C / $rightarrow$ / GFW};
node (n4) at (1,2) {CFG / $leftarrow$ / W};
node (n3) at (1,0) {G / $rightarrow$ / WFC};
node (n2) at (1,-2) {GF / $leftarrow$ / WC};
node (n1) at (1,-4) {/ $rightarrow$ / WCGF};
draw [->]
(n8) edge (n7)
(n7) edge (n6)
(n6) edge (n5)
(n5) edge (n4)
(n4) edge (n3)
(n3) edge (n2)
(n2) edge (n1);
end{tikzpicture}
end{document}
tikz-pgf
add a comment |
How can I make the arrows I draw slightly fatter arrows that are also further apart from each node I have?
edit: Is there also a better way then searching TexStackExchange to figuring this stuff on my own (like a popular reference manual?)

documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{tikz}
begin{document}
centering
begin{tikzpicture}
[scale=1.3,auto=left,every node/.style={rectangle,fill=blue!20}]
node (n8) at (1,10) {FGWC / / };
node (n7) at (1,8) {WC / $rightarrow$ / FG};
node (n6) at (1,6) {WCF / $leftarrow$ / G};
node (n5) at (1,4) {C / $rightarrow$ / GFW};
node (n4) at (1,2) {CFG / $leftarrow$ / W};
node (n3) at (1,0) {G / $rightarrow$ / WFC};
node (n2) at (1,-2) {GF / $leftarrow$ / WC};
node (n1) at (1,-4) {/ $rightarrow$ / WCGF};
draw [->]
(n8) edge (n7)
(n7) edge (n6)
(n6) edge (n5)
(n5) edge (n4)
(n4) edge (n3)
(n3) edge (n2)
(n2) edge (n1);
end{tikzpicture}
end{document}
tikz-pgf
add a comment |
How can I make the arrows I draw slightly fatter arrows that are also further apart from each node I have?
edit: Is there also a better way then searching TexStackExchange to figuring this stuff on my own (like a popular reference manual?)

documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{tikz}
begin{document}
centering
begin{tikzpicture}
[scale=1.3,auto=left,every node/.style={rectangle,fill=blue!20}]
node (n8) at (1,10) {FGWC / / };
node (n7) at (1,8) {WC / $rightarrow$ / FG};
node (n6) at (1,6) {WCF / $leftarrow$ / G};
node (n5) at (1,4) {C / $rightarrow$ / GFW};
node (n4) at (1,2) {CFG / $leftarrow$ / W};
node (n3) at (1,0) {G / $rightarrow$ / WFC};
node (n2) at (1,-2) {GF / $leftarrow$ / WC};
node (n1) at (1,-4) {/ $rightarrow$ / WCGF};
draw [->]
(n8) edge (n7)
(n7) edge (n6)
(n6) edge (n5)
(n5) edge (n4)
(n4) edge (n3)
(n3) edge (n2)
(n2) edge (n1);
end{tikzpicture}
end{document}
tikz-pgf
How can I make the arrows I draw slightly fatter arrows that are also further apart from each node I have?
edit: Is there also a better way then searching TexStackExchange to figuring this stuff on my own (like a popular reference manual?)

documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{tikz}
begin{document}
centering
begin{tikzpicture}
[scale=1.3,auto=left,every node/.style={rectangle,fill=blue!20}]
node (n8) at (1,10) {FGWC / / };
node (n7) at (1,8) {WC / $rightarrow$ / FG};
node (n6) at (1,6) {WCF / $leftarrow$ / G};
node (n5) at (1,4) {C / $rightarrow$ / GFW};
node (n4) at (1,2) {CFG / $leftarrow$ / W};
node (n3) at (1,0) {G / $rightarrow$ / WFC};
node (n2) at (1,-2) {GF / $leftarrow$ / WC};
node (n1) at (1,-4) {/ $rightarrow$ / WCGF};
draw [->]
(n8) edge (n7)
(n7) edge (n6)
(n6) edge (n5)
(n5) edge (n4)
(n4) edge (n3)
(n3) edge (n2)
(n2) edge (n1);
end{tikzpicture}
end{document}
tikz-pgf
tikz-pgf
asked 8 mins ago
Evan KimEvan Kim
1934
1934
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The pgfmanual is IMHO decent, there is also VisualTikZ. You can shorten the arrows with shorten and make them thick with thick.
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{tikz}
begin{document}
centering
begin{tikzpicture}
[scale=1.3,auto=left,every node/.style={rectangle,fill=blue!20}]
node (n8) at (1,10) {FGWC / / };
node (n7) at (1,8) {WC / $rightarrow$ / FG};
node (n6) at (1,6) {WCF / $leftarrow$ / G};
node (n5) at (1,4) {C / $rightarrow$ / GFW};
node (n4) at (1,2) {CFG / $leftarrow$ / W};
node (n3) at (1,0) {G / $rightarrow$ / WFC};
node (n2) at (1,-2) {GF / $leftarrow$ / WC};
node (n1) at (1,-4) {/ $rightarrow$ / WCGF};
draw [-latex,thick,shorten >=1pt,shorten <=1pt]
(n8) edge (n7)
(n7) edge (n6)
(n6) edge (n5)
(n5) edge (n4)
(n4) edge (n3)
(n3) edge (n2)
(n2) edge (n1);
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%2f486273%2fcreate-more-space-between-each-arrow-between-nodes%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
The pgfmanual is IMHO decent, there is also VisualTikZ. You can shorten the arrows with shorten and make them thick with thick.
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{tikz}
begin{document}
centering
begin{tikzpicture}
[scale=1.3,auto=left,every node/.style={rectangle,fill=blue!20}]
node (n8) at (1,10) {FGWC / / };
node (n7) at (1,8) {WC / $rightarrow$ / FG};
node (n6) at (1,6) {WCF / $leftarrow$ / G};
node (n5) at (1,4) {C / $rightarrow$ / GFW};
node (n4) at (1,2) {CFG / $leftarrow$ / W};
node (n3) at (1,0) {G / $rightarrow$ / WFC};
node (n2) at (1,-2) {GF / $leftarrow$ / WC};
node (n1) at (1,-4) {/ $rightarrow$ / WCGF};
draw [-latex,thick,shorten >=1pt,shorten <=1pt]
(n8) edge (n7)
(n7) edge (n6)
(n6) edge (n5)
(n5) edge (n4)
(n4) edge (n3)
(n3) edge (n2)
(n2) edge (n1);
end{tikzpicture}
end{document}

add a comment |
The pgfmanual is IMHO decent, there is also VisualTikZ. You can shorten the arrows with shorten and make them thick with thick.
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{tikz}
begin{document}
centering
begin{tikzpicture}
[scale=1.3,auto=left,every node/.style={rectangle,fill=blue!20}]
node (n8) at (1,10) {FGWC / / };
node (n7) at (1,8) {WC / $rightarrow$ / FG};
node (n6) at (1,6) {WCF / $leftarrow$ / G};
node (n5) at (1,4) {C / $rightarrow$ / GFW};
node (n4) at (1,2) {CFG / $leftarrow$ / W};
node (n3) at (1,0) {G / $rightarrow$ / WFC};
node (n2) at (1,-2) {GF / $leftarrow$ / WC};
node (n1) at (1,-4) {/ $rightarrow$ / WCGF};
draw [-latex,thick,shorten >=1pt,shorten <=1pt]
(n8) edge (n7)
(n7) edge (n6)
(n6) edge (n5)
(n5) edge (n4)
(n4) edge (n3)
(n3) edge (n2)
(n2) edge (n1);
end{tikzpicture}
end{document}

add a comment |
The pgfmanual is IMHO decent, there is also VisualTikZ. You can shorten the arrows with shorten and make them thick with thick.
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{tikz}
begin{document}
centering
begin{tikzpicture}
[scale=1.3,auto=left,every node/.style={rectangle,fill=blue!20}]
node (n8) at (1,10) {FGWC / / };
node (n7) at (1,8) {WC / $rightarrow$ / FG};
node (n6) at (1,6) {WCF / $leftarrow$ / G};
node (n5) at (1,4) {C / $rightarrow$ / GFW};
node (n4) at (1,2) {CFG / $leftarrow$ / W};
node (n3) at (1,0) {G / $rightarrow$ / WFC};
node (n2) at (1,-2) {GF / $leftarrow$ / WC};
node (n1) at (1,-4) {/ $rightarrow$ / WCGF};
draw [-latex,thick,shorten >=1pt,shorten <=1pt]
(n8) edge (n7)
(n7) edge (n6)
(n6) edge (n5)
(n5) edge (n4)
(n4) edge (n3)
(n3) edge (n2)
(n2) edge (n1);
end{tikzpicture}
end{document}

The pgfmanual is IMHO decent, there is also VisualTikZ. You can shorten the arrows with shorten and make them thick with thick.
documentclass{article}
usepackage[margin=0.5in]{geometry}
usepackage{tikz}
begin{document}
centering
begin{tikzpicture}
[scale=1.3,auto=left,every node/.style={rectangle,fill=blue!20}]
node (n8) at (1,10) {FGWC / / };
node (n7) at (1,8) {WC / $rightarrow$ / FG};
node (n6) at (1,6) {WCF / $leftarrow$ / G};
node (n5) at (1,4) {C / $rightarrow$ / GFW};
node (n4) at (1,2) {CFG / $leftarrow$ / W};
node (n3) at (1,0) {G / $rightarrow$ / WFC};
node (n2) at (1,-2) {GF / $leftarrow$ / WC};
node (n1) at (1,-4) {/ $rightarrow$ / WCGF};
draw [-latex,thick,shorten >=1pt,shorten <=1pt]
(n8) edge (n7)
(n7) edge (n6)
(n6) edge (n5)
(n5) edge (n4)
(n4) edge (n3)
(n3) edge (n2)
(n2) edge (n1);
end{tikzpicture}
end{document}

answered 47 secs ago
marmotmarmot
120k6158294
120k6158294
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%2f486273%2fcreate-more-space-between-each-arrow-between-nodes%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