Giving blur shadow to plotRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?Numerical conditional within tikz keys?Help understanding the coordinate system used in tikzRelative transparency in TikZ?Line up nested tikz enviroments or how to get rid of themProblems with nested TikZpicturesTikzset style to disable blur shadowTikz blur shadow errorTikz image within a defined box (& the textpos package)

I have a domain, static IP address and many devices I'd like to access outside my house. How do I route them?

German phrase for 'suited and booted'

Does downing a character at the start of its turn require an immediate Death Saving Throw?

Are rockets faster than airplanes?

Does Impedance Matching Imply any Practical RF Transmitter Must Waste >=50% of Energy?

Giving blur shadow to plot

What is "ass door"?

Extrapolation v. Interpolation

How can Kazakhstan perform MITM attacks on all HTTPS traffic?

Impact of throwing away fruit waste on a peak > 3200 m above a glacier

How can I deal with someone that wants to kill something that isn't supposed to be killed?

What is an expert set in the fonts field?

My current job follows "worst practices". How can I talk about my experience in an interview without giving off red flags?

Short story where a flexible reality hardens to an unchanging one

Is there a way to shorten this while condition?

Inverse Colombian Function

Why did computer video outputs go from digital to analog, then back to digital?

Considerations when providing money to one child now, and the other later?

Progressive key bindings

Is it possible to access the complete command line including pipes in a bash script?

What kind of world would drive brains to evolve high-throughput sensory?

Wiring IKEA light fixture into old fixture

How can I print a 1 cm overhang with minimal supports?

How am I supposed to put out fires?



Giving blur shadow to plot


Rotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?Numerical conditional within tikz keys?Help understanding the coordinate system used in tikzRelative transparency in TikZ?Line up nested tikz enviroments or how to get rid of themProblems with nested TikZpicturesTikzset style to disable blur shadowTikz blur shadow errorTikz image within a defined box (& the textpos package)






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








6















How can I give the plot the blur effect that you can see in the picture below?



enter image description here



documentclass[tikz,border=7pt]standalone
usetikzlibrarypositioning,arrows.meta
begindocument
begintikzpicture[node distance=0mm,minimum height=1cm,outer sep=3mm,scale=0.7,>=Latex,font=footnotesize,
indication/.style=minimum height=0cm,outer sep=0mm,
oneblock/.style=transform shape,minimum width=1cm,draw,thick,
fullset/.style=transform shape,minimum width=10cm,draw,thick]
% left part of picture
node[fullset,anchor=west] at (0,0) (A) ;
node[above=of A.north,indication] (ATXT) TRAINING SET;
node[oneblock,minimum width=2cm,anchor=west,right=of A,fill=lightgray,outer sep=0mm] (A1) ;
path (ATXT) -| (A1) node[midway] TEST SET;
node[fullset,anchor=west] at (0,-4) (B) ;
foreach x in 0,1,...,9

draw (B.west) +(x,0) node[oneblock,anchor=west,draw] ;

draw[->] (A) -- (B) node[midway,fill=white,indication] divide into 10 folds of equal size;

% right part of picture
beginscope[xshift=15cm,scale=0.5,local bounding box=rightside box]
foreach x in 0,1

foreach y in 0,1,...,4

draw (x*11,0) +(0,-y*2) node[fullset,anchor=west] ;
draw (x*11,0) +(x*5+y,-y*2) node[oneblock,draw,anchor=west,fill=lightgray] ;


coordinate (R) at (rightside box.west);
endscope

% connecting arrow
draw[->] (B.east) -- +(2.5,0) node[below,align=center,indication] run experiments\using 10 different\partitionings |- (R);
endtikzpicture
enddocument


So far I have achieved this:



enter image description here










share|improve this question






















  • Did you try loading shadow.blur and adding blur shadow to the nodes that should have a shadow?

    – marmot
    8 hours ago






  • 1





    usetikzlibraryshadows.blur,shapes.multipart tikzsetgrimsel/.style=rectangle split,rectangle split parts=1,draw, fill=white,blur shadow,rounded corners,align=center

    – NaveganTeX
    8 hours ago






  • 1





    I did but it does not work / look fine

    – NaveganTeX
    8 hours ago











  • Please add the full code you have tried. IMHO you only need to adjust shadow blur radius, the scale and set the shift to 0.

    – marmot
    8 hours ago











  • Where is the radius?!

    – NaveganTeX
    8 hours ago

















6















How can I give the plot the blur effect that you can see in the picture below?



enter image description here



documentclass[tikz,border=7pt]standalone
usetikzlibrarypositioning,arrows.meta
begindocument
begintikzpicture[node distance=0mm,minimum height=1cm,outer sep=3mm,scale=0.7,>=Latex,font=footnotesize,
indication/.style=minimum height=0cm,outer sep=0mm,
oneblock/.style=transform shape,minimum width=1cm,draw,thick,
fullset/.style=transform shape,minimum width=10cm,draw,thick]
% left part of picture
node[fullset,anchor=west] at (0,0) (A) ;
node[above=of A.north,indication] (ATXT) TRAINING SET;
node[oneblock,minimum width=2cm,anchor=west,right=of A,fill=lightgray,outer sep=0mm] (A1) ;
path (ATXT) -| (A1) node[midway] TEST SET;
node[fullset,anchor=west] at (0,-4) (B) ;
foreach x in 0,1,...,9

draw (B.west) +(x,0) node[oneblock,anchor=west,draw] ;

draw[->] (A) -- (B) node[midway,fill=white,indication] divide into 10 folds of equal size;

% right part of picture
beginscope[xshift=15cm,scale=0.5,local bounding box=rightside box]
foreach x in 0,1

foreach y in 0,1,...,4

draw (x*11,0) +(0,-y*2) node[fullset,anchor=west] ;
draw (x*11,0) +(x*5+y,-y*2) node[oneblock,draw,anchor=west,fill=lightgray] ;


coordinate (R) at (rightside box.west);
endscope

% connecting arrow
draw[->] (B.east) -- +(2.5,0) node[below,align=center,indication] run experiments\using 10 different\partitionings |- (R);
endtikzpicture
enddocument


So far I have achieved this:



enter image description here










share|improve this question






















  • Did you try loading shadow.blur and adding blur shadow to the nodes that should have a shadow?

    – marmot
    8 hours ago






  • 1





    usetikzlibraryshadows.blur,shapes.multipart tikzsetgrimsel/.style=rectangle split,rectangle split parts=1,draw, fill=white,blur shadow,rounded corners,align=center

    – NaveganTeX
    8 hours ago






  • 1





    I did but it does not work / look fine

    – NaveganTeX
    8 hours ago











  • Please add the full code you have tried. IMHO you only need to adjust shadow blur radius, the scale and set the shift to 0.

    – marmot
    8 hours ago











  • Where is the radius?!

    – NaveganTeX
    8 hours ago













6












6








6








How can I give the plot the blur effect that you can see in the picture below?



enter image description here



documentclass[tikz,border=7pt]standalone
usetikzlibrarypositioning,arrows.meta
begindocument
begintikzpicture[node distance=0mm,minimum height=1cm,outer sep=3mm,scale=0.7,>=Latex,font=footnotesize,
indication/.style=minimum height=0cm,outer sep=0mm,
oneblock/.style=transform shape,minimum width=1cm,draw,thick,
fullset/.style=transform shape,minimum width=10cm,draw,thick]
% left part of picture
node[fullset,anchor=west] at (0,0) (A) ;
node[above=of A.north,indication] (ATXT) TRAINING SET;
node[oneblock,minimum width=2cm,anchor=west,right=of A,fill=lightgray,outer sep=0mm] (A1) ;
path (ATXT) -| (A1) node[midway] TEST SET;
node[fullset,anchor=west] at (0,-4) (B) ;
foreach x in 0,1,...,9

draw (B.west) +(x,0) node[oneblock,anchor=west,draw] ;

draw[->] (A) -- (B) node[midway,fill=white,indication] divide into 10 folds of equal size;

% right part of picture
beginscope[xshift=15cm,scale=0.5,local bounding box=rightside box]
foreach x in 0,1

foreach y in 0,1,...,4

draw (x*11,0) +(0,-y*2) node[fullset,anchor=west] ;
draw (x*11,0) +(x*5+y,-y*2) node[oneblock,draw,anchor=west,fill=lightgray] ;


coordinate (R) at (rightside box.west);
endscope

% connecting arrow
draw[->] (B.east) -- +(2.5,0) node[below,align=center,indication] run experiments\using 10 different\partitionings |- (R);
endtikzpicture
enddocument


So far I have achieved this:



enter image description here










share|improve this question














How can I give the plot the blur effect that you can see in the picture below?



enter image description here



documentclass[tikz,border=7pt]standalone
usetikzlibrarypositioning,arrows.meta
begindocument
begintikzpicture[node distance=0mm,minimum height=1cm,outer sep=3mm,scale=0.7,>=Latex,font=footnotesize,
indication/.style=minimum height=0cm,outer sep=0mm,
oneblock/.style=transform shape,minimum width=1cm,draw,thick,
fullset/.style=transform shape,minimum width=10cm,draw,thick]
% left part of picture
node[fullset,anchor=west] at (0,0) (A) ;
node[above=of A.north,indication] (ATXT) TRAINING SET;
node[oneblock,minimum width=2cm,anchor=west,right=of A,fill=lightgray,outer sep=0mm] (A1) ;
path (ATXT) -| (A1) node[midway] TEST SET;
node[fullset,anchor=west] at (0,-4) (B) ;
foreach x in 0,1,...,9

draw (B.west) +(x,0) node[oneblock,anchor=west,draw] ;

draw[->] (A) -- (B) node[midway,fill=white,indication] divide into 10 folds of equal size;

% right part of picture
beginscope[xshift=15cm,scale=0.5,local bounding box=rightside box]
foreach x in 0,1

foreach y in 0,1,...,4

draw (x*11,0) +(0,-y*2) node[fullset,anchor=west] ;
draw (x*11,0) +(x*5+y,-y*2) node[oneblock,draw,anchor=west,fill=lightgray] ;


coordinate (R) at (rightside box.west);
endscope

% connecting arrow
draw[->] (B.east) -- +(2.5,0) node[below,align=center,indication] run experiments\using 10 different\partitionings |- (R);
endtikzpicture
enddocument


So far I have achieved this:



enter image description here







tikz-pgf






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 8 hours ago









NaveganTeXNaveganTeX

1,2972 silver badges11 bronze badges




1,2972 silver badges11 bronze badges












  • Did you try loading shadow.blur and adding blur shadow to the nodes that should have a shadow?

    – marmot
    8 hours ago






  • 1





    usetikzlibraryshadows.blur,shapes.multipart tikzsetgrimsel/.style=rectangle split,rectangle split parts=1,draw, fill=white,blur shadow,rounded corners,align=center

    – NaveganTeX
    8 hours ago






  • 1





    I did but it does not work / look fine

    – NaveganTeX
    8 hours ago











  • Please add the full code you have tried. IMHO you only need to adjust shadow blur radius, the scale and set the shift to 0.

    – marmot
    8 hours ago











  • Where is the radius?!

    – NaveganTeX
    8 hours ago

















  • Did you try loading shadow.blur and adding blur shadow to the nodes that should have a shadow?

    – marmot
    8 hours ago






  • 1





    usetikzlibraryshadows.blur,shapes.multipart tikzsetgrimsel/.style=rectangle split,rectangle split parts=1,draw, fill=white,blur shadow,rounded corners,align=center

    – NaveganTeX
    8 hours ago






  • 1





    I did but it does not work / look fine

    – NaveganTeX
    8 hours ago











  • Please add the full code you have tried. IMHO you only need to adjust shadow blur radius, the scale and set the shift to 0.

    – marmot
    8 hours ago











  • Where is the radius?!

    – NaveganTeX
    8 hours ago
















Did you try loading shadow.blur and adding blur shadow to the nodes that should have a shadow?

– marmot
8 hours ago





Did you try loading shadow.blur and adding blur shadow to the nodes that should have a shadow?

– marmot
8 hours ago




1




1





usetikzlibraryshadows.blur,shapes.multipart tikzsetgrimsel/.style=rectangle split,rectangle split parts=1,draw, fill=white,blur shadow,rounded corners,align=center

– NaveganTeX
8 hours ago





usetikzlibraryshadows.blur,shapes.multipart tikzsetgrimsel/.style=rectangle split,rectangle split parts=1,draw, fill=white,blur shadow,rounded corners,align=center

– NaveganTeX
8 hours ago




1




1





I did but it does not work / look fine

– NaveganTeX
8 hours ago





I did but it does not work / look fine

– NaveganTeX
8 hours ago













Please add the full code you have tried. IMHO you only need to adjust shadow blur radius, the scale and set the shift to 0.

– marmot
8 hours ago





Please add the full code you have tried. IMHO you only need to adjust shadow blur radius, the scale and set the shift to 0.

– marmot
8 hours ago













Where is the radius?!

– NaveganTeX
8 hours ago





Where is the radius?!

– NaveganTeX
8 hours ago










1 Answer
1






active

oldest

votes


















7














Dunno.



documentclass[tikz,border=7pt]standalone
usetikzlibrarypositioning,arrows.meta,shadows.blur
begindocument
begintikzpicture[node distance=0mm,minimum height=1cm,scale=0.7,>=Latex,font=footnotesize,
indication/.style=minimum height=0cm,outer sep=0mm,
oneblock/.style=transform shape,minimum width=1cm,draw,thick,
fullset/.style=transform shape,minimum width=10cm,draw,thick,inner
sep=0pt,outer sep=0pt,
pshadow/.style=fill=white,inner sep=0pt,blur shadow=shadow blur steps=10,
shadow xshift=0.1em,shadow
yshift=#1,shadow blur radius=3pt,shadow scale=1,
nshadow/.style=pshadow=-0.1em,pshadow=0.2em
]
% left part of picture
node[fullset,anchor=west,nshadow] at (0,0) (A) ;
node[above=of A.north,indication] (ATXT) TRAINING SET;
node[oneblock,minimum width=2cm,anchor=west,right=of A,outer sep=0mm,nshadow,fill=lightgray] (A1) ;
path (ATXT) -| (A1) node[midway] TEST SET;
node[fullset,anchor=west,nshadow] at (0,-4) (B) ;
foreach x in 0,1,...,9

draw (B.west) +(x,0) node[oneblock,anchor=west,draw] ;

draw[->] (A) -- (B) node[midway,fill=white,indication] divide into 10 folds of equal size;

% right part of picture
beginscope[xshift=15cm,scale=0.5,local bounding box=rightside box]
foreach x in 0,1

foreach y in 0,1,...,4

draw (x*11,0) +(0,-y*2) node[nshadow,fullset,anchor=west] (u-x-y);
draw (x*11,0) +(x*5+y,-y*2) node[oneblock,draw,anchor=west,fill=lightgray] (b-x-y);


coordinate (R) at (rightside box.west);
endscope

% connecting arrow
draw[->] (B.east) -- +(2.5,0) node[below,align=center,indication] run experiments\using 10 different\partitionings |- (R);
endtikzpicture
enddocument


enter image description here






share|improve this answer

























    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%2f501144%2fgiving-blur-shadow-to-plot%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









    7














    Dunno.



    documentclass[tikz,border=7pt]standalone
    usetikzlibrarypositioning,arrows.meta,shadows.blur
    begindocument
    begintikzpicture[node distance=0mm,minimum height=1cm,scale=0.7,>=Latex,font=footnotesize,
    indication/.style=minimum height=0cm,outer sep=0mm,
    oneblock/.style=transform shape,minimum width=1cm,draw,thick,
    fullset/.style=transform shape,minimum width=10cm,draw,thick,inner
    sep=0pt,outer sep=0pt,
    pshadow/.style=fill=white,inner sep=0pt,blur shadow=shadow blur steps=10,
    shadow xshift=0.1em,shadow
    yshift=#1,shadow blur radius=3pt,shadow scale=1,
    nshadow/.style=pshadow=-0.1em,pshadow=0.2em
    ]
    % left part of picture
    node[fullset,anchor=west,nshadow] at (0,0) (A) ;
    node[above=of A.north,indication] (ATXT) TRAINING SET;
    node[oneblock,minimum width=2cm,anchor=west,right=of A,outer sep=0mm,nshadow,fill=lightgray] (A1) ;
    path (ATXT) -| (A1) node[midway] TEST SET;
    node[fullset,anchor=west,nshadow] at (0,-4) (B) ;
    foreach x in 0,1,...,9

    draw (B.west) +(x,0) node[oneblock,anchor=west,draw] ;

    draw[->] (A) -- (B) node[midway,fill=white,indication] divide into 10 folds of equal size;

    % right part of picture
    beginscope[xshift=15cm,scale=0.5,local bounding box=rightside box]
    foreach x in 0,1

    foreach y in 0,1,...,4

    draw (x*11,0) +(0,-y*2) node[nshadow,fullset,anchor=west] (u-x-y);
    draw (x*11,0) +(x*5+y,-y*2) node[oneblock,draw,anchor=west,fill=lightgray] (b-x-y);


    coordinate (R) at (rightside box.west);
    endscope

    % connecting arrow
    draw[->] (B.east) -- +(2.5,0) node[below,align=center,indication] run experiments\using 10 different\partitionings |- (R);
    endtikzpicture
    enddocument


    enter image description here






    share|improve this answer



























      7














      Dunno.



      documentclass[tikz,border=7pt]standalone
      usetikzlibrarypositioning,arrows.meta,shadows.blur
      begindocument
      begintikzpicture[node distance=0mm,minimum height=1cm,scale=0.7,>=Latex,font=footnotesize,
      indication/.style=minimum height=0cm,outer sep=0mm,
      oneblock/.style=transform shape,minimum width=1cm,draw,thick,
      fullset/.style=transform shape,minimum width=10cm,draw,thick,inner
      sep=0pt,outer sep=0pt,
      pshadow/.style=fill=white,inner sep=0pt,blur shadow=shadow blur steps=10,
      shadow xshift=0.1em,shadow
      yshift=#1,shadow blur radius=3pt,shadow scale=1,
      nshadow/.style=pshadow=-0.1em,pshadow=0.2em
      ]
      % left part of picture
      node[fullset,anchor=west,nshadow] at (0,0) (A) ;
      node[above=of A.north,indication] (ATXT) TRAINING SET;
      node[oneblock,minimum width=2cm,anchor=west,right=of A,outer sep=0mm,nshadow,fill=lightgray] (A1) ;
      path (ATXT) -| (A1) node[midway] TEST SET;
      node[fullset,anchor=west,nshadow] at (0,-4) (B) ;
      foreach x in 0,1,...,9

      draw (B.west) +(x,0) node[oneblock,anchor=west,draw] ;

      draw[->] (A) -- (B) node[midway,fill=white,indication] divide into 10 folds of equal size;

      % right part of picture
      beginscope[xshift=15cm,scale=0.5,local bounding box=rightside box]
      foreach x in 0,1

      foreach y in 0,1,...,4

      draw (x*11,0) +(0,-y*2) node[nshadow,fullset,anchor=west] (u-x-y);
      draw (x*11,0) +(x*5+y,-y*2) node[oneblock,draw,anchor=west,fill=lightgray] (b-x-y);


      coordinate (R) at (rightside box.west);
      endscope

      % connecting arrow
      draw[->] (B.east) -- +(2.5,0) node[below,align=center,indication] run experiments\using 10 different\partitionings |- (R);
      endtikzpicture
      enddocument


      enter image description here






      share|improve this answer

























        7












        7








        7







        Dunno.



        documentclass[tikz,border=7pt]standalone
        usetikzlibrarypositioning,arrows.meta,shadows.blur
        begindocument
        begintikzpicture[node distance=0mm,minimum height=1cm,scale=0.7,>=Latex,font=footnotesize,
        indication/.style=minimum height=0cm,outer sep=0mm,
        oneblock/.style=transform shape,minimum width=1cm,draw,thick,
        fullset/.style=transform shape,minimum width=10cm,draw,thick,inner
        sep=0pt,outer sep=0pt,
        pshadow/.style=fill=white,inner sep=0pt,blur shadow=shadow blur steps=10,
        shadow xshift=0.1em,shadow
        yshift=#1,shadow blur radius=3pt,shadow scale=1,
        nshadow/.style=pshadow=-0.1em,pshadow=0.2em
        ]
        % left part of picture
        node[fullset,anchor=west,nshadow] at (0,0) (A) ;
        node[above=of A.north,indication] (ATXT) TRAINING SET;
        node[oneblock,minimum width=2cm,anchor=west,right=of A,outer sep=0mm,nshadow,fill=lightgray] (A1) ;
        path (ATXT) -| (A1) node[midway] TEST SET;
        node[fullset,anchor=west,nshadow] at (0,-4) (B) ;
        foreach x in 0,1,...,9

        draw (B.west) +(x,0) node[oneblock,anchor=west,draw] ;

        draw[->] (A) -- (B) node[midway,fill=white,indication] divide into 10 folds of equal size;

        % right part of picture
        beginscope[xshift=15cm,scale=0.5,local bounding box=rightside box]
        foreach x in 0,1

        foreach y in 0,1,...,4

        draw (x*11,0) +(0,-y*2) node[nshadow,fullset,anchor=west] (u-x-y);
        draw (x*11,0) +(x*5+y,-y*2) node[oneblock,draw,anchor=west,fill=lightgray] (b-x-y);


        coordinate (R) at (rightside box.west);
        endscope

        % connecting arrow
        draw[->] (B.east) -- +(2.5,0) node[below,align=center,indication] run experiments\using 10 different\partitionings |- (R);
        endtikzpicture
        enddocument


        enter image description here






        share|improve this answer













        Dunno.



        documentclass[tikz,border=7pt]standalone
        usetikzlibrarypositioning,arrows.meta,shadows.blur
        begindocument
        begintikzpicture[node distance=0mm,minimum height=1cm,scale=0.7,>=Latex,font=footnotesize,
        indication/.style=minimum height=0cm,outer sep=0mm,
        oneblock/.style=transform shape,minimum width=1cm,draw,thick,
        fullset/.style=transform shape,minimum width=10cm,draw,thick,inner
        sep=0pt,outer sep=0pt,
        pshadow/.style=fill=white,inner sep=0pt,blur shadow=shadow blur steps=10,
        shadow xshift=0.1em,shadow
        yshift=#1,shadow blur radius=3pt,shadow scale=1,
        nshadow/.style=pshadow=-0.1em,pshadow=0.2em
        ]
        % left part of picture
        node[fullset,anchor=west,nshadow] at (0,0) (A) ;
        node[above=of A.north,indication] (ATXT) TRAINING SET;
        node[oneblock,minimum width=2cm,anchor=west,right=of A,outer sep=0mm,nshadow,fill=lightgray] (A1) ;
        path (ATXT) -| (A1) node[midway] TEST SET;
        node[fullset,anchor=west,nshadow] at (0,-4) (B) ;
        foreach x in 0,1,...,9

        draw (B.west) +(x,0) node[oneblock,anchor=west,draw] ;

        draw[->] (A) -- (B) node[midway,fill=white,indication] divide into 10 folds of equal size;

        % right part of picture
        beginscope[xshift=15cm,scale=0.5,local bounding box=rightside box]
        foreach x in 0,1

        foreach y in 0,1,...,4

        draw (x*11,0) +(0,-y*2) node[nshadow,fullset,anchor=west] (u-x-y);
        draw (x*11,0) +(x*5+y,-y*2) node[oneblock,draw,anchor=west,fill=lightgray] (b-x-y);


        coordinate (R) at (rightside box.west);
        endscope

        % connecting arrow
        draw[->] (B.east) -- +(2.5,0) node[below,align=center,indication] run experiments\using 10 different\partitionings |- (R);
        endtikzpicture
        enddocument


        enter image description here







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 8 hours ago









        marmotmarmot

        142k6 gold badges189 silver badges351 bronze badges




        142k6 gold badges189 silver badges351 bronze badges



























            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%2f501144%2fgiving-blur-shadow-to-plot%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

            Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

            Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

            Ласкавець круглолистий Зміст Опис | Поширення | Галерея | Примітки | Посилання | Навігаційне меню58171138361-22960890446Bupleurum rotundifoliumEuro+Med PlantbasePlants of the World Online — Kew ScienceGermplasm Resources Information Network (GRIN)Ласкавецькн. VI : Літери Ком — Левиправивши або дописавши її