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)
Why did NASA use Imperial units?
High income and difficulty during interviews
Can an infinite group have a finite number of elements with order k?
Why does the salt in the oceans not sink to the bottom?
Would using carbon dioxide as fuel work to reduce the greenhouse effect?
How can I indicate that what I'm saying is not sarcastic online?
Are there any documented cases of extinction of a species of fungus?
Are stackless C++20 coroutines a problem?
What is a plausible power source to indefinitely sustain a space station?
RC differentiator giving a higher output amplitude than input amplitude
What rules turn any attack that hits a given target into a critical hit?
Extrapolation v. Interpolation
How could Barty Crouch Jr. have run out of Polyjuice Potion at the end of the Goblet of Fire movie?
What's the 1 inch size square knob sticking out of wall?
Book in which the "mountain" in the distance was a hole in the flat world
How can I show that the speed of light in vacuum is the same in all reference frames?
Is there a way to shorten this while condition?
"It is what it is" in French
Dedicated to our #1 Fan
How often should alkaline batteries be checked when they are in a device?
If hash functions append the length, why does length extension attack work?
Why is the UH-60 tail rotor canted?
How am I supposed to put out fires?
German phrase for 'suited and booted'
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;
How can I give the plot the blur effect that you can see in the picture below?
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:
tikz-pgf
add a comment |
How can I give the plot the blur effect that you can see in the picture below?
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:
tikz-pgf
Did you try loadingshadow.blur
and addingblur shadow
to the nodes that should have a shadow?
– marmot
9 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
9 hours ago
1
I did but it does not work / look fine
– NaveganTeX
9 hours ago
Please add the full code you have tried. IMHO you only need to adjustshadow blur radius
, the scale and set the shift to 0.
– marmot
9 hours ago
Where is the radius?!
– NaveganTeX
9 hours ago
add a comment |
How can I give the plot the blur effect that you can see in the picture below?
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:
tikz-pgf
How can I give the plot the blur effect that you can see in the picture below?
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:
tikz-pgf
tikz-pgf
asked 9 hours ago
NaveganTeXNaveganTeX
1,2972 silver badges11 bronze badges
1,2972 silver badges11 bronze badges
Did you try loadingshadow.blur
and addingblur shadow
to the nodes that should have a shadow?
– marmot
9 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
9 hours ago
1
I did but it does not work / look fine
– NaveganTeX
9 hours ago
Please add the full code you have tried. IMHO you only need to adjustshadow blur radius
, the scale and set the shift to 0.
– marmot
9 hours ago
Where is the radius?!
– NaveganTeX
9 hours ago
add a comment |
Did you try loadingshadow.blur
and addingblur shadow
to the nodes that should have a shadow?
– marmot
9 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
9 hours ago
1
I did but it does not work / look fine
– NaveganTeX
9 hours ago
Please add the full code you have tried. IMHO you only need to adjustshadow blur radius
, the scale and set the shift to 0.
– marmot
9 hours ago
Where is the radius?!
– NaveganTeX
9 hours ago
Did you try loading
shadow.blur
and adding blur shadow
to the nodes that should have a shadow?– marmot
9 hours ago
Did you try loading
shadow.blur
and adding blur shadow
to the nodes that should have a shadow?– marmot
9 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
9 hours ago
usetikzlibraryshadows.blur,shapes.multipart tikzsetgrimsel/.style=rectangle split,rectangle split parts=1,draw, fill=white,blur shadow,rounded corners,align=center
– NaveganTeX
9 hours ago
1
1
I did but it does not work / look fine
– NaveganTeX
9 hours ago
I did but it does not work / look fine
– NaveganTeX
9 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
9 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
9 hours ago
Where is the radius?!
– NaveganTeX
9 hours ago
Where is the radius?!
– NaveganTeX
9 hours ago
add a comment |
1 Answer
1
active
oldest
votes
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
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%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
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
add a comment |
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
add a comment |
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
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
answered 9 hours ago
marmotmarmot
142k6 gold badges189 silver badges351 bronze badges
142k6 gold badges189 silver badges351 bronze badges
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%2f501144%2fgiving-blur-shadow-to-plot%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
Did you try loading
shadow.blur
and addingblur shadow
to the nodes that should have a shadow?– marmot
9 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
9 hours ago
1
I did but it does not work / look fine
– NaveganTeX
9 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
9 hours ago
Where is the radius?!
– NaveganTeX
9 hours ago