일반적으로 논문 등을 LaTeX으로 작성할 경우 gnuplot으로 그려진 그래프를 넣는 방법을 알아보자. 터미널은 latex으로 지정해 주면 된다.
set terminal latex set output "graph.tex" set size 3.5/5, 3/3. set format y "$%g$" set format x "$%5.1f\mu$" set title "This is a title" set xlabel "This is the $x$ axis" set ylabel "This is\\a longer\\version\\ of\\the $y$\\ axis" set label "Data" at -5,-5 right set arrow from -5,-5 to -3.3,-6.7 set key -4,8 set xtic -10,5,10 plot [-10:10] [-10:10] "sample.dat" title "Data File" with linespoints 1 7,\ 3*exp(-x*x)+1 title "$3e^{-x^{2}}+1$" with lines 4 |
이런 식으로 그래프를 작성하고 latex 파일의 본문에 그림을 넣어야 할 곳에
\begin {figure} \begin{center} \bogosityincarnate{graph} \end{center} \end {figure} |
와 같은 내용을 삽입해 주면 된다.