How to draw manifolds charts with TikZ? The Next CEO of Stack OverflowDrawing manifolds in tikzHow to draw a QOC diagram maybe with TikZHow to draw Area ChartsHow can I draw Indian horoscope charts?How can I draw a helio charts?TikZ: Drawing an arc from an intersection to an intersectionHow to make Pie charts in Tikz?Drawing manifolds in tikzTikz Pie ChartsHow to draw two charts in same figure using tikz?Drawing Earth charts with TikZ
Easy to read palindrome checker
Can this note be analyzed as a non-chord tone?
Help/tips for a first time writer?
Is there a difference between "Fahrstuhl" and "Aufzug"?
Why is information "lost" when it got into a black hole?
Why don't programming languages automatically manage the synchronous/asynchronous problem?
What steps are necessary to read a Modern SSD in Medieval Europe?
The Ultimate Number Sequence Puzzle
How to avoid supervisors with prejudiced views?
Why am I getting "Static method cannot be referenced from a non static context: String String.valueOf(Object)"?
Getting Stale Gas Out of a Gas Tank w/out Dropping the Tank
How do I fit a non linear curve?
Which one is the true statement?
Is it convenient to ask the journal's editor for two additional days to complete a review?
How to find image of a complex function with given constraints?
Decide between Polyglossia and Babel for LuaLaTeX in 2019
What flight has the highest ratio of timezone difference to flight time?
Is there an equivalent of cd - for cp or mv
IC has pull-down resistors on SMBus lines?
Towers in the ocean; How deep can they be built?
Is it ever safe to open a suspicious HTML file (e.g. email attachment)?
Why do we say 'Un seul M' and not 'Une seule M' even though M is a "consonne"
How did Beeri the Hittite come up with naming his daughter Yehudit?
Why did early computer designers eschew integers?
How to draw manifolds charts with TikZ?
The Next CEO of Stack OverflowDrawing manifolds in tikzHow to draw a QOC diagram maybe with TikZHow to draw Area ChartsHow can I draw Indian horoscope charts?How can I draw a helio charts?TikZ: Drawing an arc from an intersection to an intersectionHow to make Pie charts in Tikz?Drawing manifolds in tikzTikz Pie ChartsHow to draw two charts in same figure using tikz?Drawing Earth charts with TikZ
I'm quite new to TikZ, so I would love to get some help with the drawing! What I intended to draw was not exactly what is shown in the picture, as that is probably not possible. I only want to draw a similar photo within the boundaries of TikZ. That is, the surfaces themselves don't have to curve exactly like the ones in the photo.
Here is the code
documentclass[border=5mm,tikz]standalone
usepackageamssymb
usepackagepgfplots
usepgfplotslibrarypatchplots
usetikzlibrarypatterns, positioning, arrows
pgfplotssetcompat=1.8
usepackagetikz
begindocument
begintikzpicture
% Functions i
path[->] (0.8, 0) edge [bend right] node[left, xshift=-2mm] $phi_i$ (-1, -2.9);
draw[white,fill=white] (0.06,-0.57) circle (.15cm);
path[->] (-0.7, -3.05) edge [bend right] node [right, yshift=-3mm] $phi^-1_i$ (1.093, -0.11);
draw[white, fill=white] (0.95,-1.2) circle (.15cm);
% Functions j
path[->] (5.8, -2.8) edge [bend left] node[midway, xshift=-5mm, yshift=-3mm] $phi^-1_j$ (3.8, -0.35);
draw[white, fill=white] (4,-1.1) circle (.15cm);
path[->] (4.2, 0) edge [bend left] node[right, xshift=2mm] $phi_j$ (6.2, -2.8);
draw[white, fill=white] (4.54,-0.12) circle (.15cm);
% Manifold
draw[smooth cycle, tension=0.4, fill=white, pattern color=brown, pattern=north west lines, opacity=0.7] plot coordinates(2,2) (-0.5,0) (3,-2) (5,1) node at (3,2.3) $M$;
% Help lines
%draw[help lines] (-3,-6) grid (8,6);
% Subsets
draw[smooth cycle, pattern color=orange, pattern=crosshatch dots] plot coordinates (1,0) (1.5, 1.2) (2.5,1.3) (2.6, 0.4);
node [label=[label distance=-0.3cm, xshift=-2cm, fill=white]:$U_i$] ;
draw[smooth cycle, pattern color=blue, pattern=crosshatch dots]
plot coordinates (4, 0) (3.7, 0.8) (3.0, 1.2) (2.5, 1.2) (2.2, 0.8) (2.3, 0.5) (2.6, 0.3) (3.5, 0.0); node [label=[label distance=-0.8cm, xshift=.75cm, yshift=1cm, fill=white]:$U_j$] ;
% First Axis
draw[thick, ->] (-3,-5) -- (0, -5) node [label=above:$phi_i(U_i)$] ;
draw[thick, ->] (-3,-5) -- (-3, -2) node [label=right:$mathbbR^m$] ;
% Arrow from i to j
draw[->] (0, -3.85) -- node[midway, above]$psi_ij$ (4.5, -3.85);
% Second Axis
draw[thick, ->] (5, -5) -- (8, -5) node [label=above:$phi_j(U_j)$] ;
draw[thick, ->] (5, -5) -- (5, -2) node [label=right:$mathbbR^m$] ;
% Sets in R^m
draw[white, pattern color=orange, pattern=crosshatch dots] (-0.67, -3.06) -- +(180:0.8) arc (180:270:0.8);
fill[even odd rule, white] [smooth cycle] plot coordinates(-2, -4.5) (-2, -3.2) (-0.8, -3.2) (-0.8, -4.5) (-0.67, -3.06) -- +(180:0.8) arc (180:270:0.8);
draw[smooth cycle] plot coordinates(-2, -4.5) (-2, -3.2) (-0.8, -3.2) (-0.8, -4.5);
draw (-1.45, -3.06) arc (180:270:0.8);
draw[white, pattern color=blue, pattern=crosshatch dots] (5.7, -3.06) -- +(-90:0.8) arc (-90:0:0.8);
fill[even odd rule, white] [smooth cycle] plot coordinates(7, -4.5) (7, -3.2) (5.8, -3.2) (5.8, -4.5) (5.7, -3.06) -- +(-90:0.8) arc (-90:0:0.8);
draw[smooth cycle] plot coordinates(7, -4.5) (7, -3.2) (5.8, -3.2) (5.8, -4.5);
draw (5.69, -3.85) arc (-90:0:0.8);
endtikzpicture
enddocument
I don't get anywhere near the figure I need to make.
tikz-pgf macros
add a comment |
I'm quite new to TikZ, so I would love to get some help with the drawing! What I intended to draw was not exactly what is shown in the picture, as that is probably not possible. I only want to draw a similar photo within the boundaries of TikZ. That is, the surfaces themselves don't have to curve exactly like the ones in the photo.
Here is the code
documentclass[border=5mm,tikz]standalone
usepackageamssymb
usepackagepgfplots
usepgfplotslibrarypatchplots
usetikzlibrarypatterns, positioning, arrows
pgfplotssetcompat=1.8
usepackagetikz
begindocument
begintikzpicture
% Functions i
path[->] (0.8, 0) edge [bend right] node[left, xshift=-2mm] $phi_i$ (-1, -2.9);
draw[white,fill=white] (0.06,-0.57) circle (.15cm);
path[->] (-0.7, -3.05) edge [bend right] node [right, yshift=-3mm] $phi^-1_i$ (1.093, -0.11);
draw[white, fill=white] (0.95,-1.2) circle (.15cm);
% Functions j
path[->] (5.8, -2.8) edge [bend left] node[midway, xshift=-5mm, yshift=-3mm] $phi^-1_j$ (3.8, -0.35);
draw[white, fill=white] (4,-1.1) circle (.15cm);
path[->] (4.2, 0) edge [bend left] node[right, xshift=2mm] $phi_j$ (6.2, -2.8);
draw[white, fill=white] (4.54,-0.12) circle (.15cm);
% Manifold
draw[smooth cycle, tension=0.4, fill=white, pattern color=brown, pattern=north west lines, opacity=0.7] plot coordinates(2,2) (-0.5,0) (3,-2) (5,1) node at (3,2.3) $M$;
% Help lines
%draw[help lines] (-3,-6) grid (8,6);
% Subsets
draw[smooth cycle, pattern color=orange, pattern=crosshatch dots] plot coordinates (1,0) (1.5, 1.2) (2.5,1.3) (2.6, 0.4);
node [label=[label distance=-0.3cm, xshift=-2cm, fill=white]:$U_i$] ;
draw[smooth cycle, pattern color=blue, pattern=crosshatch dots]
plot coordinates (4, 0) (3.7, 0.8) (3.0, 1.2) (2.5, 1.2) (2.2, 0.8) (2.3, 0.5) (2.6, 0.3) (3.5, 0.0); node [label=[label distance=-0.8cm, xshift=.75cm, yshift=1cm, fill=white]:$U_j$] ;
% First Axis
draw[thick, ->] (-3,-5) -- (0, -5) node [label=above:$phi_i(U_i)$] ;
draw[thick, ->] (-3,-5) -- (-3, -2) node [label=right:$mathbbR^m$] ;
% Arrow from i to j
draw[->] (0, -3.85) -- node[midway, above]$psi_ij$ (4.5, -3.85);
% Second Axis
draw[thick, ->] (5, -5) -- (8, -5) node [label=above:$phi_j(U_j)$] ;
draw[thick, ->] (5, -5) -- (5, -2) node [label=right:$mathbbR^m$] ;
% Sets in R^m
draw[white, pattern color=orange, pattern=crosshatch dots] (-0.67, -3.06) -- +(180:0.8) arc (180:270:0.8);
fill[even odd rule, white] [smooth cycle] plot coordinates(-2, -4.5) (-2, -3.2) (-0.8, -3.2) (-0.8, -4.5) (-0.67, -3.06) -- +(180:0.8) arc (180:270:0.8);
draw[smooth cycle] plot coordinates(-2, -4.5) (-2, -3.2) (-0.8, -3.2) (-0.8, -4.5);
draw (-1.45, -3.06) arc (180:270:0.8);
draw[white, pattern color=blue, pattern=crosshatch dots] (5.7, -3.06) -- +(-90:0.8) arc (-90:0:0.8);
fill[even odd rule, white] [smooth cycle] plot coordinates(7, -4.5) (7, -3.2) (5.8, -3.2) (5.8, -4.5) (5.7, -3.06) -- +(-90:0.8) arc (-90:0:0.8);
draw[smooth cycle] plot coordinates(7, -4.5) (7, -3.2) (5.8, -3.2) (5.8, -4.5);
draw (5.69, -3.85) arc (-90:0:0.8);
endtikzpicture
enddocument
I don't get anywhere near the figure I need to make.
tikz-pgf macros
5
Welcome to TeX.SE! Here is a code that you may build on. If you have problems adapting it to your needs, you will have a nice basis for a question to post here.
– marmot
Jan 18 at 17:05
Please show us the code you have tried so far. Did you follow the link given in the comment above?
– Kurt
19 hours ago
I tried to use the code given by marmot but I was unable to modify it to make the figure i.stack.imgur.com/GOWEO.jpg
– user179774
5 hours ago
add a comment |
I'm quite new to TikZ, so I would love to get some help with the drawing! What I intended to draw was not exactly what is shown in the picture, as that is probably not possible. I only want to draw a similar photo within the boundaries of TikZ. That is, the surfaces themselves don't have to curve exactly like the ones in the photo.
Here is the code
documentclass[border=5mm,tikz]standalone
usepackageamssymb
usepackagepgfplots
usepgfplotslibrarypatchplots
usetikzlibrarypatterns, positioning, arrows
pgfplotssetcompat=1.8
usepackagetikz
begindocument
begintikzpicture
% Functions i
path[->] (0.8, 0) edge [bend right] node[left, xshift=-2mm] $phi_i$ (-1, -2.9);
draw[white,fill=white] (0.06,-0.57) circle (.15cm);
path[->] (-0.7, -3.05) edge [bend right] node [right, yshift=-3mm] $phi^-1_i$ (1.093, -0.11);
draw[white, fill=white] (0.95,-1.2) circle (.15cm);
% Functions j
path[->] (5.8, -2.8) edge [bend left] node[midway, xshift=-5mm, yshift=-3mm] $phi^-1_j$ (3.8, -0.35);
draw[white, fill=white] (4,-1.1) circle (.15cm);
path[->] (4.2, 0) edge [bend left] node[right, xshift=2mm] $phi_j$ (6.2, -2.8);
draw[white, fill=white] (4.54,-0.12) circle (.15cm);
% Manifold
draw[smooth cycle, tension=0.4, fill=white, pattern color=brown, pattern=north west lines, opacity=0.7] plot coordinates(2,2) (-0.5,0) (3,-2) (5,1) node at (3,2.3) $M$;
% Help lines
%draw[help lines] (-3,-6) grid (8,6);
% Subsets
draw[smooth cycle, pattern color=orange, pattern=crosshatch dots] plot coordinates (1,0) (1.5, 1.2) (2.5,1.3) (2.6, 0.4);
node [label=[label distance=-0.3cm, xshift=-2cm, fill=white]:$U_i$] ;
draw[smooth cycle, pattern color=blue, pattern=crosshatch dots]
plot coordinates (4, 0) (3.7, 0.8) (3.0, 1.2) (2.5, 1.2) (2.2, 0.8) (2.3, 0.5) (2.6, 0.3) (3.5, 0.0); node [label=[label distance=-0.8cm, xshift=.75cm, yshift=1cm, fill=white]:$U_j$] ;
% First Axis
draw[thick, ->] (-3,-5) -- (0, -5) node [label=above:$phi_i(U_i)$] ;
draw[thick, ->] (-3,-5) -- (-3, -2) node [label=right:$mathbbR^m$] ;
% Arrow from i to j
draw[->] (0, -3.85) -- node[midway, above]$psi_ij$ (4.5, -3.85);
% Second Axis
draw[thick, ->] (5, -5) -- (8, -5) node [label=above:$phi_j(U_j)$] ;
draw[thick, ->] (5, -5) -- (5, -2) node [label=right:$mathbbR^m$] ;
% Sets in R^m
draw[white, pattern color=orange, pattern=crosshatch dots] (-0.67, -3.06) -- +(180:0.8) arc (180:270:0.8);
fill[even odd rule, white] [smooth cycle] plot coordinates(-2, -4.5) (-2, -3.2) (-0.8, -3.2) (-0.8, -4.5) (-0.67, -3.06) -- +(180:0.8) arc (180:270:0.8);
draw[smooth cycle] plot coordinates(-2, -4.5) (-2, -3.2) (-0.8, -3.2) (-0.8, -4.5);
draw (-1.45, -3.06) arc (180:270:0.8);
draw[white, pattern color=blue, pattern=crosshatch dots] (5.7, -3.06) -- +(-90:0.8) arc (-90:0:0.8);
fill[even odd rule, white] [smooth cycle] plot coordinates(7, -4.5) (7, -3.2) (5.8, -3.2) (5.8, -4.5) (5.7, -3.06) -- +(-90:0.8) arc (-90:0:0.8);
draw[smooth cycle] plot coordinates(7, -4.5) (7, -3.2) (5.8, -3.2) (5.8, -4.5);
draw (5.69, -3.85) arc (-90:0:0.8);
endtikzpicture
enddocument
I don't get anywhere near the figure I need to make.
tikz-pgf macros
I'm quite new to TikZ, so I would love to get some help with the drawing! What I intended to draw was not exactly what is shown in the picture, as that is probably not possible. I only want to draw a similar photo within the boundaries of TikZ. That is, the surfaces themselves don't have to curve exactly like the ones in the photo.
Here is the code
documentclass[border=5mm,tikz]standalone
usepackageamssymb
usepackagepgfplots
usepgfplotslibrarypatchplots
usetikzlibrarypatterns, positioning, arrows
pgfplotssetcompat=1.8
usepackagetikz
begindocument
begintikzpicture
% Functions i
path[->] (0.8, 0) edge [bend right] node[left, xshift=-2mm] $phi_i$ (-1, -2.9);
draw[white,fill=white] (0.06,-0.57) circle (.15cm);
path[->] (-0.7, -3.05) edge [bend right] node [right, yshift=-3mm] $phi^-1_i$ (1.093, -0.11);
draw[white, fill=white] (0.95,-1.2) circle (.15cm);
% Functions j
path[->] (5.8, -2.8) edge [bend left] node[midway, xshift=-5mm, yshift=-3mm] $phi^-1_j$ (3.8, -0.35);
draw[white, fill=white] (4,-1.1) circle (.15cm);
path[->] (4.2, 0) edge [bend left] node[right, xshift=2mm] $phi_j$ (6.2, -2.8);
draw[white, fill=white] (4.54,-0.12) circle (.15cm);
% Manifold
draw[smooth cycle, tension=0.4, fill=white, pattern color=brown, pattern=north west lines, opacity=0.7] plot coordinates(2,2) (-0.5,0) (3,-2) (5,1) node at (3,2.3) $M$;
% Help lines
%draw[help lines] (-3,-6) grid (8,6);
% Subsets
draw[smooth cycle, pattern color=orange, pattern=crosshatch dots] plot coordinates (1,0) (1.5, 1.2) (2.5,1.3) (2.6, 0.4);
node [label=[label distance=-0.3cm, xshift=-2cm, fill=white]:$U_i$] ;
draw[smooth cycle, pattern color=blue, pattern=crosshatch dots]
plot coordinates (4, 0) (3.7, 0.8) (3.0, 1.2) (2.5, 1.2) (2.2, 0.8) (2.3, 0.5) (2.6, 0.3) (3.5, 0.0); node [label=[label distance=-0.8cm, xshift=.75cm, yshift=1cm, fill=white]:$U_j$] ;
% First Axis
draw[thick, ->] (-3,-5) -- (0, -5) node [label=above:$phi_i(U_i)$] ;
draw[thick, ->] (-3,-5) -- (-3, -2) node [label=right:$mathbbR^m$] ;
% Arrow from i to j
draw[->] (0, -3.85) -- node[midway, above]$psi_ij$ (4.5, -3.85);
% Second Axis
draw[thick, ->] (5, -5) -- (8, -5) node [label=above:$phi_j(U_j)$] ;
draw[thick, ->] (5, -5) -- (5, -2) node [label=right:$mathbbR^m$] ;
% Sets in R^m
draw[white, pattern color=orange, pattern=crosshatch dots] (-0.67, -3.06) -- +(180:0.8) arc (180:270:0.8);
fill[even odd rule, white] [smooth cycle] plot coordinates(-2, -4.5) (-2, -3.2) (-0.8, -3.2) (-0.8, -4.5) (-0.67, -3.06) -- +(180:0.8) arc (180:270:0.8);
draw[smooth cycle] plot coordinates(-2, -4.5) (-2, -3.2) (-0.8, -3.2) (-0.8, -4.5);
draw (-1.45, -3.06) arc (180:270:0.8);
draw[white, pattern color=blue, pattern=crosshatch dots] (5.7, -3.06) -- +(-90:0.8) arc (-90:0:0.8);
fill[even odd rule, white] [smooth cycle] plot coordinates(7, -4.5) (7, -3.2) (5.8, -3.2) (5.8, -4.5) (5.7, -3.06) -- +(-90:0.8) arc (-90:0:0.8);
draw[smooth cycle] plot coordinates(7, -4.5) (7, -3.2) (5.8, -3.2) (5.8, -4.5);
draw (5.69, -3.85) arc (-90:0:0.8);
endtikzpicture
enddocument
I don't get anywhere near the figure I need to make.
tikz-pgf macros
tikz-pgf macros
edited 6 hours ago
Kurt
40.2k850164
40.2k850164
asked Jan 18 at 17:00
user179774user179774
62
62
5
Welcome to TeX.SE! Here is a code that you may build on. If you have problems adapting it to your needs, you will have a nice basis for a question to post here.
– marmot
Jan 18 at 17:05
Please show us the code you have tried so far. Did you follow the link given in the comment above?
– Kurt
19 hours ago
I tried to use the code given by marmot but I was unable to modify it to make the figure i.stack.imgur.com/GOWEO.jpg
– user179774
5 hours ago
add a comment |
5
Welcome to TeX.SE! Here is a code that you may build on. If you have problems adapting it to your needs, you will have a nice basis for a question to post here.
– marmot
Jan 18 at 17:05
Please show us the code you have tried so far. Did you follow the link given in the comment above?
– Kurt
19 hours ago
I tried to use the code given by marmot but I was unable to modify it to make the figure i.stack.imgur.com/GOWEO.jpg
– user179774
5 hours ago
5
5
Welcome to TeX.SE! Here is a code that you may build on. If you have problems adapting it to your needs, you will have a nice basis for a question to post here.
– marmot
Jan 18 at 17:05
Welcome to TeX.SE! Here is a code that you may build on. If you have problems adapting it to your needs, you will have a nice basis for a question to post here.
– marmot
Jan 18 at 17:05
Please show us the code you have tried so far. Did you follow the link given in the comment above?
– Kurt
19 hours ago
Please show us the code you have tried so far. Did you follow the link given in the comment above?
– Kurt
19 hours ago
I tried to use the code given by marmot but I was unable to modify it to make the figure i.stack.imgur.com/GOWEO.jpg
– user179774
5 hours ago
I tried to use the code given by marmot but I was unable to modify it to make the figure i.stack.imgur.com/GOWEO.jpg
– user179774
5 hours ago
add a comment |
0
active
oldest
votes
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%2f470736%2fhow-to-draw-manifolds-charts-with-tikz%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f470736%2fhow-to-draw-manifolds-charts-with-tikz%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
5
Welcome to TeX.SE! Here is a code that you may build on. If you have problems adapting it to your needs, you will have a nice basis for a question to post here.
– marmot
Jan 18 at 17:05
Please show us the code you have tried so far. Did you follow the link given in the comment above?
– Kurt
19 hours ago
I tried to use the code given by marmot but I was unable to modify it to make the figure i.stack.imgur.com/GOWEO.jpg
– user179774
5 hours ago