No idea how to draw this using tikzHow to draw multiple lines inside the circlehow to draw circles inside circlesHow to draw this simple box diagram with TikzHow can I draw a circular graph in tikz?How to modify this TikZ code to draw in another locationsDraw Circle About FigureHow to draw this kind of block diagram?How can I give this perspective with Tikz?2D CNN network in TikzHow to draw a 2-dim Brownian motion into a disk

Is there a good way to store credentials outside of a password manager?

A known event to a history junkie

Is there enough fresh water in the world to eradicate the drinking water crisis?

What do you call the infoboxes with text and sometimes images on the side of a page we find in textbooks?

Can a Gentile theist be saved?

Can I Retrieve Email Addresses from BCC?

Have I saved too much for retirement so far?

Giant Toughroad SLR 2 for 200 miles in two days, will it make it?

Partial sums of primes

Why is delta-v is the most useful quantity for planning space travel?

What will be the benefits of Brexit?

Pronouncing Homer as in modern Greek

Installing PowerShell on 32-bit Kali OS fails

Greatest common substring

What is the opposite of 'gravitas'?

Could solar power be utilized and substitute coal in the 19th century?

The One-Electron Universe postulate is true - what simple change can I make to change the whole universe?

How do I rename a LINUX host without needing to reboot for the rename to take effect?

Is there a problem with hiding "forgot password" until it's needed?

Is it okay / does it make sense for another player to join a running game of Munchkin?

Freedom of speech and where it applies

Science Fiction story where a man invents a machine that can help him watch history unfold

Lifted its hind leg on or lifted its hind leg towards?

Why does this part of the Space Shuttle launch pad seem to be floating in air?



No idea how to draw this using tikz


How to draw multiple lines inside the circlehow to draw circles inside circlesHow to draw this simple box diagram with TikzHow can I draw a circular graph in tikz?How to modify this TikZ code to draw in another locationsDraw Circle About FigureHow to draw this kind of block diagram?How can I give this perspective with Tikz?2D CNN network in TikzHow to draw a 2-dim Brownian motion into a disk













2















I am trying to draw this picture: enter image description here



I have tried a lot of things, like defining this



newcommandirregularcircle[2]
pgfextra pgfmathsetmacrolen(#1)+rand*(#2)
+(0:len pt)
foreach a in 10,20,...,120
pgfextra pgfmathsetmacrolen(#1)+rand*(#2)
-- +(a:len pt)
-- cycle



But it don't give a figure that can be between the x-axis and the circle, and I don't know how to do this. Thanks.










share|improve this question
























  • Try tikzedt.org

    – sandu
    1 hour ago















2















I am trying to draw this picture: enter image description here



I have tried a lot of things, like defining this



newcommandirregularcircle[2]
pgfextra pgfmathsetmacrolen(#1)+rand*(#2)
+(0:len pt)
foreach a in 10,20,...,120
pgfextra pgfmathsetmacrolen(#1)+rand*(#2)
-- +(a:len pt)
-- cycle



But it don't give a figure that can be between the x-axis and the circle, and I don't know how to do this. Thanks.










share|improve this question
























  • Try tikzedt.org

    – sandu
    1 hour ago













2












2








2








I am trying to draw this picture: enter image description here



I have tried a lot of things, like defining this



newcommandirregularcircle[2]
pgfextra pgfmathsetmacrolen(#1)+rand*(#2)
+(0:len pt)
foreach a in 10,20,...,120
pgfextra pgfmathsetmacrolen(#1)+rand*(#2)
-- +(a:len pt)
-- cycle



But it don't give a figure that can be between the x-axis and the circle, and I don't know how to do this. Thanks.










share|improve this question
















I am trying to draw this picture: enter image description here



I have tried a lot of things, like defining this



newcommandirregularcircle[2]
pgfextra pgfmathsetmacrolen(#1)+rand*(#2)
+(0:len pt)
foreach a in 10,20,...,120
pgfextra pgfmathsetmacrolen(#1)+rand*(#2)
-- +(a:len pt)
-- cycle



But it don't give a figure that can be between the x-axis and the circle, and I don't know how to do this. Thanks.







tikz-pgf draw






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 1 hour ago









sandu

3,70342856




3,70342856










asked 1 hour ago









J.RodriguezJ.Rodriguez

815




815












  • Try tikzedt.org

    – sandu
    1 hour ago

















  • Try tikzedt.org

    – sandu
    1 hour ago
















Try tikzedt.org

– sandu
1 hour ago





Try tikzedt.org

– sandu
1 hour ago










1 Answer
1






active

oldest

votes


















4














One possibility is tp build up a random list and plots a smooth curve through it.



documentclass[tikz,border=3.14mm]standalone
usetikzlibrarypatterns
begindocument
begintikzpicture
pgfmathsetseed9
foreach X in 0,...,11
ifnumX=0
pgfmathsetmacromyradius2
xdefmyLstmyradius
else
pgfmathsetmacromyradiusmyLst[X-1]+0.5*(rnd-0.5)
xdefmyLstmyLst,myradius
fi
xdefmyLstmyLst,2
draw[pattern=north east lines] (2,0) --
plot[smooth,variable=x,samples at=0,...,12]
([xshift=2cm]-x*10:myLst[x]) -- (-60:2) arc(-60:0:2);
draw (120:2) arc (120:-120:2);
draw[-latex] (0,0) -- (5,0);
draw[dashed] (2,0) -- (2,-pi);
draw (2,0) -- ++ (-120:pi);
draw[latex-latex] (2,0) + (-120:2.7) arc(-120:-90:2.7) node[midway,below]$mu$;
draw[-latex] (2,0) -- ++ (-45:1) node[pos=1.2]$z$;
endtikzpicture
enddocument


enter image description here






share|improve this answer




















  • 2





    Marmot, you are a tikz god. Its the 4th question that you answer to me. Thanks a lot. I will put you in my acknowledgments of the tesis.

    – J.Rodriguez
    49 mins ago






  • 1





    @J.Rodriguez It's my pleasure and no need to put acknowledgments.

    – marmot
    48 mins ago











  • @marmot should be in a lot of thesis.

    – manooooh
    38 mins ago










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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f481460%2fno-idea-how-to-draw-this-using-tikz%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









4














One possibility is tp build up a random list and plots a smooth curve through it.



documentclass[tikz,border=3.14mm]standalone
usetikzlibrarypatterns
begindocument
begintikzpicture
pgfmathsetseed9
foreach X in 0,...,11
ifnumX=0
pgfmathsetmacromyradius2
xdefmyLstmyradius
else
pgfmathsetmacromyradiusmyLst[X-1]+0.5*(rnd-0.5)
xdefmyLstmyLst,myradius
fi
xdefmyLstmyLst,2
draw[pattern=north east lines] (2,0) --
plot[smooth,variable=x,samples at=0,...,12]
([xshift=2cm]-x*10:myLst[x]) -- (-60:2) arc(-60:0:2);
draw (120:2) arc (120:-120:2);
draw[-latex] (0,0) -- (5,0);
draw[dashed] (2,0) -- (2,-pi);
draw (2,0) -- ++ (-120:pi);
draw[latex-latex] (2,0) + (-120:2.7) arc(-120:-90:2.7) node[midway,below]$mu$;
draw[-latex] (2,0) -- ++ (-45:1) node[pos=1.2]$z$;
endtikzpicture
enddocument


enter image description here






share|improve this answer




















  • 2





    Marmot, you are a tikz god. Its the 4th question that you answer to me. Thanks a lot. I will put you in my acknowledgments of the tesis.

    – J.Rodriguez
    49 mins ago






  • 1





    @J.Rodriguez It's my pleasure and no need to put acknowledgments.

    – marmot
    48 mins ago











  • @marmot should be in a lot of thesis.

    – manooooh
    38 mins ago















4














One possibility is tp build up a random list and plots a smooth curve through it.



documentclass[tikz,border=3.14mm]standalone
usetikzlibrarypatterns
begindocument
begintikzpicture
pgfmathsetseed9
foreach X in 0,...,11
ifnumX=0
pgfmathsetmacromyradius2
xdefmyLstmyradius
else
pgfmathsetmacromyradiusmyLst[X-1]+0.5*(rnd-0.5)
xdefmyLstmyLst,myradius
fi
xdefmyLstmyLst,2
draw[pattern=north east lines] (2,0) --
plot[smooth,variable=x,samples at=0,...,12]
([xshift=2cm]-x*10:myLst[x]) -- (-60:2) arc(-60:0:2);
draw (120:2) arc (120:-120:2);
draw[-latex] (0,0) -- (5,0);
draw[dashed] (2,0) -- (2,-pi);
draw (2,0) -- ++ (-120:pi);
draw[latex-latex] (2,0) + (-120:2.7) arc(-120:-90:2.7) node[midway,below]$mu$;
draw[-latex] (2,0) -- ++ (-45:1) node[pos=1.2]$z$;
endtikzpicture
enddocument


enter image description here






share|improve this answer




















  • 2





    Marmot, you are a tikz god. Its the 4th question that you answer to me. Thanks a lot. I will put you in my acknowledgments of the tesis.

    – J.Rodriguez
    49 mins ago






  • 1





    @J.Rodriguez It's my pleasure and no need to put acknowledgments.

    – marmot
    48 mins ago











  • @marmot should be in a lot of thesis.

    – manooooh
    38 mins ago













4












4








4







One possibility is tp build up a random list and plots a smooth curve through it.



documentclass[tikz,border=3.14mm]standalone
usetikzlibrarypatterns
begindocument
begintikzpicture
pgfmathsetseed9
foreach X in 0,...,11
ifnumX=0
pgfmathsetmacromyradius2
xdefmyLstmyradius
else
pgfmathsetmacromyradiusmyLst[X-1]+0.5*(rnd-0.5)
xdefmyLstmyLst,myradius
fi
xdefmyLstmyLst,2
draw[pattern=north east lines] (2,0) --
plot[smooth,variable=x,samples at=0,...,12]
([xshift=2cm]-x*10:myLst[x]) -- (-60:2) arc(-60:0:2);
draw (120:2) arc (120:-120:2);
draw[-latex] (0,0) -- (5,0);
draw[dashed] (2,0) -- (2,-pi);
draw (2,0) -- ++ (-120:pi);
draw[latex-latex] (2,0) + (-120:2.7) arc(-120:-90:2.7) node[midway,below]$mu$;
draw[-latex] (2,0) -- ++ (-45:1) node[pos=1.2]$z$;
endtikzpicture
enddocument


enter image description here






share|improve this answer















One possibility is tp build up a random list and plots a smooth curve through it.



documentclass[tikz,border=3.14mm]standalone
usetikzlibrarypatterns
begindocument
begintikzpicture
pgfmathsetseed9
foreach X in 0,...,11
ifnumX=0
pgfmathsetmacromyradius2
xdefmyLstmyradius
else
pgfmathsetmacromyradiusmyLst[X-1]+0.5*(rnd-0.5)
xdefmyLstmyLst,myradius
fi
xdefmyLstmyLst,2
draw[pattern=north east lines] (2,0) --
plot[smooth,variable=x,samples at=0,...,12]
([xshift=2cm]-x*10:myLst[x]) -- (-60:2) arc(-60:0:2);
draw (120:2) arc (120:-120:2);
draw[-latex] (0,0) -- (5,0);
draw[dashed] (2,0) -- (2,-pi);
draw (2,0) -- ++ (-120:pi);
draw[latex-latex] (2,0) + (-120:2.7) arc(-120:-90:2.7) node[midway,below]$mu$;
draw[-latex] (2,0) -- ++ (-45:1) node[pos=1.2]$z$;
endtikzpicture
enddocument


enter image description here







share|improve this answer














share|improve this answer



share|improve this answer








edited 7 mins ago

























answered 1 hour ago









marmotmarmot

112k5140264




112k5140264







  • 2





    Marmot, you are a tikz god. Its the 4th question that you answer to me. Thanks a lot. I will put you in my acknowledgments of the tesis.

    – J.Rodriguez
    49 mins ago






  • 1





    @J.Rodriguez It's my pleasure and no need to put acknowledgments.

    – marmot
    48 mins ago











  • @marmot should be in a lot of thesis.

    – manooooh
    38 mins ago












  • 2





    Marmot, you are a tikz god. Its the 4th question that you answer to me. Thanks a lot. I will put you in my acknowledgments of the tesis.

    – J.Rodriguez
    49 mins ago






  • 1





    @J.Rodriguez It's my pleasure and no need to put acknowledgments.

    – marmot
    48 mins ago











  • @marmot should be in a lot of thesis.

    – manooooh
    38 mins ago







2




2





Marmot, you are a tikz god. Its the 4th question that you answer to me. Thanks a lot. I will put you in my acknowledgments of the tesis.

– J.Rodriguez
49 mins ago





Marmot, you are a tikz god. Its the 4th question that you answer to me. Thanks a lot. I will put you in my acknowledgments of the tesis.

– J.Rodriguez
49 mins ago




1




1





@J.Rodriguez It's my pleasure and no need to put acknowledgments.

– marmot
48 mins ago





@J.Rodriguez It's my pleasure and no need to put acknowledgments.

– marmot
48 mins ago













@marmot should be in a lot of thesis.

– manooooh
38 mins ago





@marmot should be in a lot of thesis.

– manooooh
38 mins ago

















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f481460%2fno-idea-how-to-draw-this-using-tikz%23new-answer', 'question_page');

);

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







Popular posts from this blog

कुँवर स्रोत दिक्चालन सूची"कुँवर""राणा कुँवरके वंशावली"

Why is a white electrical wire connected to 2 black wires?How to wire a light fixture with 3 white wires in box?How should I wire a ceiling fan when there's only three wires in the box?Two white, two black, two ground, and red wire in ceiling box connected to switchWhy is there a white wire connected to multiple black wires in my light box?How to wire a light with two white wires and one black wireReplace light switch connected to a power outlet with dimmer - two black wires to one black and redHow to wire a light with multiple black/white/green wires from the ceiling?Ceiling box has 2 black and white wires but fan/ light only has 1 of eachWhy neutral wire connected to load wire?Switch with 2 black, 2 white, 2 ground and 1 red wire connected to ceiling light and a receptacle?

चैत्य भूमि चित्र दीर्घा सन्दर्भ बाहरी कडियाँ दिक्चालन सूची"Chaitya Bhoomi""Chaitya Bhoomi: Statue of Equality in India""Dadar Chaitya Bhoomi: Statue of Equality in India""Ambedkar memorial: Centre okays transfer of Indu Mill land"चैत्यभमि