gnuplot脚本和较小的乳胶符号

时间:2013-04-02 11:44:20

标签: gnuplot

我通常使用eps latex终端并传递由$$ $$包围的LaTeX符号(我使用下面的脚本,我一直在编辑)。

如果我想使用{\tiny ... }缩小符号,它就不会让步。所以我的问题是:“我如何使乳胶符号更小?”

set terminal epslatex color colortext size 9cm,5cm
set size 1.5,1.0
set output "potencialna_jama_6.tex"

set xtics ("$0$" 0, "$\\frac{d}{2}$" 0.5, "$-\\frac{d}{2}$" -0.5)
set ytics ("$0$" 0)

set xlabel "$x$"

set style line 1 linetype 1 linewidth 3 linecolor rgb "#FF0055"
set style line 2 linetype 2 linewidth 1 linecolor rgb "#FF0055"
set style line 3 linetype 1 linewidth 3 linecolor rgb "#2C397D"
set style line 4 linetype 2 linewidth 1 linecolor rgb "#2C397D"
set style line 5 linetype 1 linewidth 3 linecolor rgb "#793715"
set style line 6 linetype 2 linewidth 1 linecolor rgb "#793715"
set style line 7 linetype 1 linewidth 3 linecolor rgb "#b1b1b1"
set style line 8 linetype 3 linewidth 1 linecolor rgb "#b1b1b1"

set grid

set samples 7000

set key at graph .70, 0.4
set key samplen 2
set key spacing 0.8

K=1
L=1
A=1

f(x) = A*exp(K*x)
g(x) = -( A*exp(-L*0.5) )/( sin(L*0.5) )*sin(L*x)
h(x) = -A*exp(-K*x)

set xrange [-1:1]
set yrange [-3:3]

plot [-1:1] f(x) ls 1 title "$\\psi_{I}$", g(x) ls 3 title "$\\psi_{II}$", h(x) ls 5 title "$\\psi_{III}$" 

1 个答案:

答案 0 :(得分:1)

作为免责声明,我几乎没有使用gnuplot的LaTeX终端的经验。然而,经过一些试验和错误,我做了类似的事情:

set xtics ("$0$" 0, "{\\tiny $\\frac{d}{2}$}" 0.5, "$-\\frac{d}{2}$" -0.5)

我使用了以下TeX:

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin {figure} 
  \begin{center} 
    \input{potencialna_jama_6} 
  \end{center} 
\end {figure}     
\end{document}

并且看到我得到的东西看起来像:

enter image description here

注意一个x-tic标签是如何明显小于其他标签?显然{\\tiny ...}工作了。请注意,我需要逃避领先的\以获得gnuplot的好处(正如您在许多其他地方所做的那样)。我也没有使用颜色,因为我的TeX抱怨不知道如何处理颜色,但我怀疑这有什么不同。