HarisIqbal88 / PlotNeuralNet

Latex code for making neural networks diagrams
MIT License
21.74k stars 2.84k forks source link

Zlabel Position Error #37

Open kewangtt opened 5 years ago

kewangtt commented 5 years ago

I just run fc8 from the example dir. I don't know why the position of Z-label is wrong ... 1

thuyngch commented 5 years ago

I modify the zlabels in file "RightBandedBox.sty" and it works for me.

Screenshot from 2019-04-23 12-04-09

TillBeemelmanns commented 4 years ago

You are probably using Latex 2018, right ? Changing pos=0 to pos=0.5 solved the problem for me.

\tikzstyle{depthlabel}=[pos=0.5,text width=14*\z,text centered,sloped] 
lgl603 commented 4 years ago

I met the same problem using MacLatex. The two solutions above failed together. Can someone help me?

I modify the zlabels in file "Box.sty" and it works for me.

alberflor commented 3 years ago

Anyone knows which parameter can I modify to hide the labels ?

rgm-22 commented 3 years ago

Modify the zlabels in file "RightBandedBox.sty" works for me ;)

@Btrox148 Try to hide the labels removing their text:

xlabel={{"64","64"}},ylabel=224,zlabel=,fill=...

ross-Hr commented 2 years ago

\tikzstyle{depthlabel}=[pos=0,text width=14*\z,text centered,sloped] in RightBandedBox.sty ...

Changing pos=0 to pos=0.5

That works for me.

You are probably using Latex 2018, right ? Changing pos=0 to pos=0.5 solved the problem for me.

\tikzstyle{depthlabel}=[pos=0.5,text width=14*\z,text centered,sloped] 
JieGenius commented 1 year ago
image

I change

\tikzstyle{depthlabel}=[pos=0,text width=14*\z,text centered,sloped]

to

\tikzstyle{depthlabel}=[pos=0.5,text width=14*\z,text centered,sloped]

in Box.sty(or RightBandedBox.sty ), and this solved the problem for me.