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;
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
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 adjustshadow blur radius
, the scale and set the shift to 0.
– marmot
8 hours ago
Where is the radius?!
– NaveganTeX
8 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 8 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
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 adjustshadow blur radius
, the scale and set the shift to 0.
– marmot
8 hours ago
Where is the radius?!
– NaveganTeX
8 hours ago
add a comment |
Did you try loadingshadow.blur
and addingblur 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 adjustshadow 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
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 8 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
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