如何使用 \psxlabel 和 \psylabel 更改 pstricks 图中标签大小?

如何使用 \psxlabel 和 \psylabel 更改 pstricks 图中标签大小?

我试图在 pstricks 图的轴上获取更大的数字。用户指南只说

The labels are set in the current font (ome of the examples above were
preceded by \small so that the labels would be smaller). You can do
fancy things with the labels by redefining the commands:

\psxlabel
\psylabel

E.g., if you want change the font of the horizontal labels, but not the
vertical labels, try something like

\def\psxlabel#1{\small #1}

但是,没有对 \pxlabel 命令的描述或此命令行的使用示例。我尝试将其插入到 \begin{document} 行之前和之后,但没有结果。

如何使用此命令来更改轴的标签字体大小?

非常感谢。

答案1

labelFontSize,,xlabelFontSizeylabelFontSize但你必须使用正确的尺寸宏!标签在数学模式下默认设置,因此\tiny例如除非你说否则不起作用mathLabel=false

\documentclass{article}
\usepackage{pst-plot}
\begin{document}

Without setting labels in math mode

\begin{pspicture}(-1,-1)(6,6)
\psaxes[mathLabel=false,xlabelFontSize=\tiny,ylabelFontSize=\Large](0,0)(-1,-1)(5,5)
\end{pspicture}

Setting labels in math mode (default)

\begin{pspicture}(-1,-1)(6,6)
\psaxes[labelFontSize=\scriptstyle](0,0)(-1,-1)(5,5)
\end{pspicture}

\end{document}

相关内容