2

我通常使用 eps 乳胶终端并传递被包围的 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}$" 
4

1 回答 1

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}

瞧,我得到了一些看起来像的东西:

在此处输入图像描述

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

于 2013-04-02T13:37:25.913 回答