can you help for diagram for in latex?
begin{tikzcd}
3 arrow[dr] & \
4 arrow[r] & 2arrow[dr] & \
1
end{tikzcd}
could you help me? how do yo writting latex?
tikz-pgf tikz-cd
add a comment |
begin{tikzcd}
3 arrow[dr] & \
4 arrow[r] & 2arrow[dr] & \
1
end{tikzcd}
could you help me? how do yo writting latex?
tikz-pgf tikz-cd
I see you've asked some questions about similar diagrams before, are you able to do any part of this yourself? Where does the problem lie, exactly?
– Torbjørn T.
2 days ago
the direction of the arrows and the writing of numbers. i can't get the image i want
– tuce
2 days ago
Then show us the code with what you have achieved so far.
– Stefan Pinnow
2 days ago
all I did was faulty,
– tuce
2 days ago
2
So? Usually a question saying "I have this code that does this, but I want to get the output shown in this image, what do I have to change" is better than "what code do I need to reproduce this image".
– Torbjørn T.
2 days ago
add a comment |
begin{tikzcd}
3 arrow[dr] & \
4 arrow[r] & 2arrow[dr] & \
1
end{tikzcd}
could you help me? how do yo writting latex?
tikz-pgf tikz-cd
begin{tikzcd}
3 arrow[dr] & \
4 arrow[r] & 2arrow[dr] & \
1
end{tikzcd}
could you help me? how do yo writting latex?
tikz-pgf tikz-cd
tikz-pgf tikz-cd
edited 2 days ago
Torbjørn T.
156k13251438
156k13251438
asked 2 days ago
tucetuce
476
476
I see you've asked some questions about similar diagrams before, are you able to do any part of this yourself? Where does the problem lie, exactly?
– Torbjørn T.
2 days ago
the direction of the arrows and the writing of numbers. i can't get the image i want
– tuce
2 days ago
Then show us the code with what you have achieved so far.
– Stefan Pinnow
2 days ago
all I did was faulty,
– tuce
2 days ago
2
So? Usually a question saying "I have this code that does this, but I want to get the output shown in this image, what do I have to change" is better than "what code do I need to reproduce this image".
– Torbjørn T.
2 days ago
add a comment |
I see you've asked some questions about similar diagrams before, are you able to do any part of this yourself? Where does the problem lie, exactly?
– Torbjørn T.
2 days ago
the direction of the arrows and the writing of numbers. i can't get the image i want
– tuce
2 days ago
Then show us the code with what you have achieved so far.
– Stefan Pinnow
2 days ago
all I did was faulty,
– tuce
2 days ago
2
So? Usually a question saying "I have this code that does this, but I want to get the output shown in this image, what do I have to change" is better than "what code do I need to reproduce this image".
– Torbjørn T.
2 days ago
I see you've asked some questions about similar diagrams before, are you able to do any part of this yourself? Where does the problem lie, exactly?
– Torbjørn T.
2 days ago
I see you've asked some questions about similar diagrams before, are you able to do any part of this yourself? Where does the problem lie, exactly?
– Torbjørn T.
2 days ago
the direction of the arrows and the writing of numbers. i can't get the image i want
– tuce
2 days ago
the direction of the arrows and the writing of numbers. i can't get the image i want
– tuce
2 days ago
Then show us the code with what you have achieved so far.
– Stefan Pinnow
2 days ago
Then show us the code with what you have achieved so far.
– Stefan Pinnow
2 days ago
all I did was faulty,
– tuce
2 days ago
all I did was faulty,
– tuce
2 days ago
2
2
So? Usually a question saying "I have this code that does this, but I want to get the output shown in this image, what do I have to change" is better than "what code do I need to reproduce this image".
– Torbjørn T.
2 days ago
So? Usually a question saying "I have this code that does this, but I want to get the output shown in this image, what do I have to change" is better than "what code do I need to reproduce this image".
– Torbjørn T.
2 days ago
add a comment |
2 Answers
2
active
oldest
votes
Like this?
documentclass[margin=1cm]{standalone}
usepackage{amsmath}
usepackage{tikz,tikz-cd}
begin{document}
begin{tikzcd}
3 arrow[rd] & & \
4 arrow[r] &
begin{array}{c}
2\
3 4
end{array}
arrow[rd] & \
& &
begin{array}{c}
1\
2\
3 4
end{array}
end{tikzcd}
end{document}
thank you, yes, but how can I write these numbers a little closer?
– tuce
2 days ago
add a comment |
You can set the numbers in an array, but in footnotesize
, with reduced interline spacing. Better to define a suitable command for it.
With between origins
, the south-east bound arrows will be aligned.
documentclass{article}
usepackage{amsmath,tikz-cd}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{3} arrow[dr] \
stack{4} arrow[r] &
stack{2\3;4} arrow[dr] \
&& stack{1\2\3;4}
end{tikzcd}
qquad
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{1\2\3} arrow[dr] \
stack{1\2\4} arrow[r] &
stack{1\2} arrow[dr] \
&& stack{1}
end{tikzcd}
]
end{document}
If you want Times-like fonts, use newtx
:
documentclass{article}
usepackage{amsmath,tikz-cd}
usepackage{newtxtext,newtxmath}
tikzcdset{arrow style=math font}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{3} arrow[dr] \
stack{4} arrow[r] &
stack{2\3;4} arrow[dr] \
&& stack{1\2\3;4}
end{tikzcd}
qquad
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{1\2\3} arrow[dr] \
stack{1\2\4} arrow[r] &
stack{1\2} arrow[dr] \
&& stack{1}
end{tikzcd}
]
end{document}
Your picture seems to have been produced with Xy-pic (but the quality is inferior and the arrow tips very ugly).
documentclass{article}
usepackage{amsmath}
usepackage[all]{xy}
usepackage{newtxtext,newtxmath}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
xymatrix@R-1pc{
stack{3} ar[dr] \
stack{4} ar[r] &
stack{2\3;4} ar[dr] \
&& stack{1\2\3;4}
}
qquad
xymatrix@R-1pc{
stack{1\2\3} ar[dr] \
stack{1\2\4} ar[r] &
stack{1\2} ar[dr] \
&& stack{1}
}
]
end{document}
Excuse me very much for my opinion. Please can you add the same example withXy-pic
. Peraphs withnewtxmath
andusepackage[all,cmtip]{xy}
the result is the same of the picture?
– Sebastiano
2 days ago
@Sebastiano Added
– egreg
2 days ago
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%2f470847%2fcan-you-help-for-diagram-for-in-latex%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
Like this?
documentclass[margin=1cm]{standalone}
usepackage{amsmath}
usepackage{tikz,tikz-cd}
begin{document}
begin{tikzcd}
3 arrow[rd] & & \
4 arrow[r] &
begin{array}{c}
2\
3 4
end{array}
arrow[rd] & \
& &
begin{array}{c}
1\
2\
3 4
end{array}
end{tikzcd}
end{document}
thank you, yes, but how can I write these numbers a little closer?
– tuce
2 days ago
add a comment |
Like this?
documentclass[margin=1cm]{standalone}
usepackage{amsmath}
usepackage{tikz,tikz-cd}
begin{document}
begin{tikzcd}
3 arrow[rd] & & \
4 arrow[r] &
begin{array}{c}
2\
3 4
end{array}
arrow[rd] & \
& &
begin{array}{c}
1\
2\
3 4
end{array}
end{tikzcd}
end{document}
thank you, yes, but how can I write these numbers a little closer?
– tuce
2 days ago
add a comment |
Like this?
documentclass[margin=1cm]{standalone}
usepackage{amsmath}
usepackage{tikz,tikz-cd}
begin{document}
begin{tikzcd}
3 arrow[rd] & & \
4 arrow[r] &
begin{array}{c}
2\
3 4
end{array}
arrow[rd] & \
& &
begin{array}{c}
1\
2\
3 4
end{array}
end{tikzcd}
end{document}
Like this?
documentclass[margin=1cm]{standalone}
usepackage{amsmath}
usepackage{tikz,tikz-cd}
begin{document}
begin{tikzcd}
3 arrow[rd] & & \
4 arrow[r] &
begin{array}{c}
2\
3 4
end{array}
arrow[rd] & \
& &
begin{array}{c}
1\
2\
3 4
end{array}
end{tikzcd}
end{document}
answered 2 days ago
ferahfezaferahfeza
5,45911830
5,45911830
thank you, yes, but how can I write these numbers a little closer?
– tuce
2 days ago
add a comment |
thank you, yes, but how can I write these numbers a little closer?
– tuce
2 days ago
thank you, yes, but how can I write these numbers a little closer?
– tuce
2 days ago
thank you, yes, but how can I write these numbers a little closer?
– tuce
2 days ago
add a comment |
You can set the numbers in an array, but in footnotesize
, with reduced interline spacing. Better to define a suitable command for it.
With between origins
, the south-east bound arrows will be aligned.
documentclass{article}
usepackage{amsmath,tikz-cd}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{3} arrow[dr] \
stack{4} arrow[r] &
stack{2\3;4} arrow[dr] \
&& stack{1\2\3;4}
end{tikzcd}
qquad
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{1\2\3} arrow[dr] \
stack{1\2\4} arrow[r] &
stack{1\2} arrow[dr] \
&& stack{1}
end{tikzcd}
]
end{document}
If you want Times-like fonts, use newtx
:
documentclass{article}
usepackage{amsmath,tikz-cd}
usepackage{newtxtext,newtxmath}
tikzcdset{arrow style=math font}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{3} arrow[dr] \
stack{4} arrow[r] &
stack{2\3;4} arrow[dr] \
&& stack{1\2\3;4}
end{tikzcd}
qquad
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{1\2\3} arrow[dr] \
stack{1\2\4} arrow[r] &
stack{1\2} arrow[dr] \
&& stack{1}
end{tikzcd}
]
end{document}
Your picture seems to have been produced with Xy-pic (but the quality is inferior and the arrow tips very ugly).
documentclass{article}
usepackage{amsmath}
usepackage[all]{xy}
usepackage{newtxtext,newtxmath}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
xymatrix@R-1pc{
stack{3} ar[dr] \
stack{4} ar[r] &
stack{2\3;4} ar[dr] \
&& stack{1\2\3;4}
}
qquad
xymatrix@R-1pc{
stack{1\2\3} ar[dr] \
stack{1\2\4} ar[r] &
stack{1\2} ar[dr] \
&& stack{1}
}
]
end{document}
Excuse me very much for my opinion. Please can you add the same example withXy-pic
. Peraphs withnewtxmath
andusepackage[all,cmtip]{xy}
the result is the same of the picture?
– Sebastiano
2 days ago
@Sebastiano Added
– egreg
2 days ago
add a comment |
You can set the numbers in an array, but in footnotesize
, with reduced interline spacing. Better to define a suitable command for it.
With between origins
, the south-east bound arrows will be aligned.
documentclass{article}
usepackage{amsmath,tikz-cd}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{3} arrow[dr] \
stack{4} arrow[r] &
stack{2\3;4} arrow[dr] \
&& stack{1\2\3;4}
end{tikzcd}
qquad
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{1\2\3} arrow[dr] \
stack{1\2\4} arrow[r] &
stack{1\2} arrow[dr] \
&& stack{1}
end{tikzcd}
]
end{document}
If you want Times-like fonts, use newtx
:
documentclass{article}
usepackage{amsmath,tikz-cd}
usepackage{newtxtext,newtxmath}
tikzcdset{arrow style=math font}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{3} arrow[dr] \
stack{4} arrow[r] &
stack{2\3;4} arrow[dr] \
&& stack{1\2\3;4}
end{tikzcd}
qquad
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{1\2\3} arrow[dr] \
stack{1\2\4} arrow[r] &
stack{1\2} arrow[dr] \
&& stack{1}
end{tikzcd}
]
end{document}
Your picture seems to have been produced with Xy-pic (but the quality is inferior and the arrow tips very ugly).
documentclass{article}
usepackage{amsmath}
usepackage[all]{xy}
usepackage{newtxtext,newtxmath}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
xymatrix@R-1pc{
stack{3} ar[dr] \
stack{4} ar[r] &
stack{2\3;4} ar[dr] \
&& stack{1\2\3;4}
}
qquad
xymatrix@R-1pc{
stack{1\2\3} ar[dr] \
stack{1\2\4} ar[r] &
stack{1\2} ar[dr] \
&& stack{1}
}
]
end{document}
Excuse me very much for my opinion. Please can you add the same example withXy-pic
. Peraphs withnewtxmath
andusepackage[all,cmtip]{xy}
the result is the same of the picture?
– Sebastiano
2 days ago
@Sebastiano Added
– egreg
2 days ago
add a comment |
You can set the numbers in an array, but in footnotesize
, with reduced interline spacing. Better to define a suitable command for it.
With between origins
, the south-east bound arrows will be aligned.
documentclass{article}
usepackage{amsmath,tikz-cd}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{3} arrow[dr] \
stack{4} arrow[r] &
stack{2\3;4} arrow[dr] \
&& stack{1\2\3;4}
end{tikzcd}
qquad
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{1\2\3} arrow[dr] \
stack{1\2\4} arrow[r] &
stack{1\2} arrow[dr] \
&& stack{1}
end{tikzcd}
]
end{document}
If you want Times-like fonts, use newtx
:
documentclass{article}
usepackage{amsmath,tikz-cd}
usepackage{newtxtext,newtxmath}
tikzcdset{arrow style=math font}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{3} arrow[dr] \
stack{4} arrow[r] &
stack{2\3;4} arrow[dr] \
&& stack{1\2\3;4}
end{tikzcd}
qquad
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{1\2\3} arrow[dr] \
stack{1\2\4} arrow[r] &
stack{1\2} arrow[dr] \
&& stack{1}
end{tikzcd}
]
end{document}
Your picture seems to have been produced with Xy-pic (but the quality is inferior and the arrow tips very ugly).
documentclass{article}
usepackage{amsmath}
usepackage[all]{xy}
usepackage{newtxtext,newtxmath}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
xymatrix@R-1pc{
stack{3} ar[dr] \
stack{4} ar[r] &
stack{2\3;4} ar[dr] \
&& stack{1\2\3;4}
}
qquad
xymatrix@R-1pc{
stack{1\2\3} ar[dr] \
stack{1\2\4} ar[r] &
stack{1\2} ar[dr] \
&& stack{1}
}
]
end{document}
You can set the numbers in an array, but in footnotesize
, with reduced interline spacing. Better to define a suitable command for it.
With between origins
, the south-east bound arrows will be aligned.
documentclass{article}
usepackage{amsmath,tikz-cd}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{3} arrow[dr] \
stack{4} arrow[r] &
stack{2\3;4} arrow[dr] \
&& stack{1\2\3;4}
end{tikzcd}
qquad
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{1\2\3} arrow[dr] \
stack{1\2\4} arrow[r] &
stack{1\2} arrow[dr] \
&& stack{1}
end{tikzcd}
]
end{document}
If you want Times-like fonts, use newtx
:
documentclass{article}
usepackage{amsmath,tikz-cd}
usepackage{newtxtext,newtxmath}
tikzcdset{arrow style=math font}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{3} arrow[dr] \
stack{4} arrow[r] &
stack{2\3;4} arrow[dr] \
&& stack{1\2\3;4}
end{tikzcd}
qquad
begin{tikzcd}[row sep={4em,between origins},column sep={4em,between origins}]
stack{1\2\3} arrow[dr] \
stack{1\2\4} arrow[r] &
stack{1\2} arrow[dr] \
&& stack{1}
end{tikzcd}
]
end{document}
Your picture seems to have been produced with Xy-pic (but the quality is inferior and the arrow tips very ugly).
documentclass{article}
usepackage{amsmath}
usepackage[all]{xy}
usepackage{newtxtext,newtxmath}
newcommand{stack}[1]{%
mbox{%
footnotesize
renewcommand{arraystretch}{0.75}%
$begin{array}{@{}c@{}}#1end{array}$%
}%
}
begin{document}
[
xymatrix@R-1pc{
stack{3} ar[dr] \
stack{4} ar[r] &
stack{2\3;4} ar[dr] \
&& stack{1\2\3;4}
}
qquad
xymatrix@R-1pc{
stack{1\2\3} ar[dr] \
stack{1\2\4} ar[r] &
stack{1\2} ar[dr] \
&& stack{1}
}
]
end{document}
edited 2 days ago
answered 2 days ago
egregegreg
714k8618963184
714k8618963184
Excuse me very much for my opinion. Please can you add the same example withXy-pic
. Peraphs withnewtxmath
andusepackage[all,cmtip]{xy}
the result is the same of the picture?
– Sebastiano
2 days ago
@Sebastiano Added
– egreg
2 days ago
add a comment |
Excuse me very much for my opinion. Please can you add the same example withXy-pic
. Peraphs withnewtxmath
andusepackage[all,cmtip]{xy}
the result is the same of the picture?
– Sebastiano
2 days ago
@Sebastiano Added
– egreg
2 days ago
Excuse me very much for my opinion. Please can you add the same example with
Xy-pic
. Peraphs with newtxmath
and usepackage[all,cmtip]{xy}
the result is the same of the picture?– Sebastiano
2 days ago
Excuse me very much for my opinion. Please can you add the same example with
Xy-pic
. Peraphs with newtxmath
and usepackage[all,cmtip]{xy}
the result is the same of the picture?– Sebastiano
2 days ago
@Sebastiano Added
– egreg
2 days ago
@Sebastiano Added
– egreg
2 days ago
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%2f470847%2fcan-you-help-for-diagram-for-in-latex%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
I see you've asked some questions about similar diagrams before, are you able to do any part of this yourself? Where does the problem lie, exactly?
– Torbjørn T.
2 days ago
the direction of the arrows and the writing of numbers. i can't get the image i want
– tuce
2 days ago
Then show us the code with what you have achieved so far.
– Stefan Pinnow
2 days ago
all I did was faulty,
– tuce
2 days ago
2
So? Usually a question saying "I have this code that does this, but I want to get the output shown in this image, what do I have to change" is better than "what code do I need to reproduce this image".
– Torbjørn T.
2 days ago