목록Tips (Utility, Computer Language, and etc.) (201)
감동, 마음이 움직이는 것
http://kisys.tistory.com/entry/Mac-Latex-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0 커멘드에서sudo tlmgr update –all –self 를 해주고 kotex패키지 추가해서 사용 \usepackage{kotex} 중요한 건 문서를 Encoding을 UTF-8 Unicode로 설정해주어야 한다는 것이다!Texshop의 경우 Macros탭에있는 Encoding에서 변경가능하다.
https://blog.outsider.ne.kr/788 git stash 사용하기
http://www.gnuplotting.org/vector-field-from-data-file/http://www.gnuplotting.org/vector-field-from-function/ set samples 17 # x-axis set isosamples 15 # y-axis plot '++' u ($1-dx($1,$2)/2.0):($2-dy($1,$2)/2.0):\ (dx($1,$2)):(dy($1,$2)):(v($1,$2)) \ with vectors head size 0.08,20,60 filled lc palette I tried to draw vector field from the functions.Below is my gnuplot script and result. #vector: ..
http://gnuplot.sourceforge.net/demo_5.0/pm3dcolors.htmlreverse로 사용하고 싶을 떈 set palette negative 라고 하면 반대 방향으로 팔레트를 사용할 수 있다.
http://www.gnuplot.info/demo_4.6/textcolor.htmlset label "label" at -1.5, 1.8 front nopoint tc rgb "#xxxxxx"
First step: making SSH keysssh-keygen -t rsa -C "hjpark@evolbio.mpg.de"#Creates a new ssh key using the provided email # Generating public/private rsa key pair...cat ~/.ssh/id_rsa.pub # ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc.... Second step: create a new projecthttps://git-scm.com/book/en/v2/Git-on-the-Server-GitLabThe first thing you’ll want to do with GitLab is create a new projec..
[REF] http://tex.stackexchange.com/questions/49785/how-to-set-equal-size-of-cells-in-tabular-environment-when-multicolumn-extend-thttp://tex.stackexchange.com/questions/60601/evenly-distributing-column-widths \newcolumntype{C}{>{\centering\arraybackslash}p{2em}}P{2em}에서 저 숫자가 자기가 원하는 폭이 되는겁니다. 저 값만 바꿔서 쓰면 되는데요. 예제에서 \begin{center} \begin{tabular}{|C|C|C|C|C|C|C|C|C|} \hline \multicolumn{9}{|c|}{..
tex처럼 쓰는 것 같은데 나도 안 써봐서 잘은 모르겟지만 schematic한 그림 그리는 데 유용한 듯.http://www.texample.net/tikz/
예를 들어 피팅을 한 다음에 피팅 파라메터만 출력해서 저장하고 싶다. f(x) = a*x**bfit f(x) 'data.d' u 1:2 via a, bset print "parameter.d"print a, bunset print 위와 같이 set print 를 사용하면 됩니다.
http://stackoverflow.com/questions/2471884/histogram-using-gnuplot [1] histogram 데이터에서 바로 그리기참고 http://stackoverflow.com/questions/2471884/histogram-using-gnuplotmin=0. //min valuemax=230. //max valuen=23 //# of binswidth = (max-min)/n //bin widthset boxwidth width bin(x) = width*(floor(x-min)/width)+0.5) + min //position of pointset xr[min:max+width]p 'test.txt' u (bin($1)):(1.0) smooth freq w ..