在 pstricks 中更改字体大小

在 pstricks 中更改字体大小

我想根据以下模板创建轮廓图

\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pstricks-add,pst-eucl}

\psset
{
        PointName=none,
        PointSymbol=none,
        linecap=1,
        linecolor=red,
}

\def\Radius{1.8}
\def\radius{0.5}
\def\Angle{2.5}

\begin{document}
\begin{pspicture}[showgrid=false](-3,-3)(3,3)
    \psaxes[labels=none,ticks=none,linecolor=gray]{->}(0,0)(-3,-3)(2.7,2.7)[$\textbf{Re}\, z$,-90][$\textbf{Im}\, z$,180]
    \pstGeonode 
        (0,0){O}
        (\Radius;\Angle){A}
        (\Radius;90){B}
        (\Radius;-90){C}
        (\Radius;-\Angle){D}
        (\radius;0|D){E}
        (\radius;0|A){F}
    \pstArcOAB[arrows=->,arcsepB=-3pt]{O}{A}{B}
    \pstArcOAB[arrows=->,arcsepB=-3pt]{O}{B}{C}
    \pstArcOAB{O}{C}{D}
    \pstLineAB[ArrowInside=->]{D}{E}
    \pstArcnOAB{O}{E}{F}
    \pstLineAB[ArrowInside=->]{F}{A}
    %labeling
    \psset{labelsep=2pt}
    \uput[45](\Radius;45){$\Gamma$}
    \uput[135](\radius;135){$\gamma$}
    \uput[-45](\Radius;0){$R$}
    \uput[-135](\Radius;180){$-R$}  
\end{pspicture}
\end{document}

我借用了这个帖子。问题是字体太大。有没有办法全局设置字体大小/字体系列,以便它适用于整个文件?

实际上,还有一个问题:我想使用 \psComment 进行注释,但我不知道如何进行多行注释。如能得到任何帮助,我将不胜感激。

答案1

footnotesize很简单:在你的代码中添加:

在此处输入图片描述

相关内容