Ubuntu 管理心得

搜尋此網誌

2019年1月30日 星期三

IEEE keyword

Inside LaTeX box: \begin{IEEEkeywords}

My keyword 1, My keyword 2, My keyword  3... 
Inside LaTeX box: \end{IEEEkeywords}

2019年1月25日 星期五

Increase row height

Put this into LaTeX box (Ctrl-L) in front of table:
\setlength\extrarowheight{5pt} Or \renewcommand{\arraystretch}{1.5}
If the above not work, try add vphantom inside the table cell, e.g.
\vphantom{{ \displaystyle {\frac{1}{5}} }}
 
 


2019年1月24日 星期四

dash style

cf: /home/chiao/Fuzzy/Papers/2019/0623FUZZ-IEEE/papers/example/Matplotlib/exm.ipynb

#[8, 4, 6, 2] means: 8pt. line + 4pt. break + 6pt. line + 2pt. break ]
dstary=[[1,0],[8, 2],[5, 2], [3,2], [1,2]]
ax.plot(x, yL,label=labl,linewidth=2, dashes=dstary[1], color='black')

2019年1月3日 星期四

Plot several functions with differenet domains

Show[Plot[0.025` Sqrt[3156 - 1800 x + 225 x^2], {x, 5.4048, 6}],
 Plot[0.5339, {x, 6, 11}],
 Plot[\[Sqrt](30.091788404703134` - 4.696813600723558` x +
     0.18064667695090608` x^2), {x, 11, 11.4437}], PlotRange -> All]