字体大小(单位:pt)(pgfplots)

字体大小(单位:pt)(pgfplots)

如何在 pgfplots 中设置 pt 中的字体大小?简化到基本内容,我的文档如下所示:

\documentclass[border=10pt]{standalone}
\usepackage{pgfplots}
\pgfplotsset{
compat=newest,
width=1\textwidth,
height=0.6\textwidth,
}

\begin{document}
\begin{tikzpicture} 
\begin{axis}[
label style={font=\large},      
]       
    \addplot [line width=1pt]  table   [x=TLE, y=Cute]{bstern.txt};

\end{axis}
\end{tikzpicture}   
\end{document}

我将生成的 pdf 包含在文本宽度为 0.8 的另一个文档中。由于我想要一致的字体大小,因此我想将标签字体大小设置为 15pt。

是否有任何我可以包含的包,以便我除了 \small、\large 等之外还有更多的种类?

答案1

您可以使用

\documentclass[border=10pt]{standalone}
\usepackage{pgfplots}
\pgfplotsset{
compat=newest,
width=1\textwidth,
height=0.6\textwidth,
}
 \newcommand\mtlarge{\fontsize{15pt}{18pt}\selectfont}
\begin{document}
\begin{tikzpicture} 
\begin{axis}[
label style={font=\mtlarge},      
]       
   \addplot [line width=1pt]  table   [x=TLE, y=Cute]{bstern.txt};

 \end{axis}
\end{tikzpicture}   
\end{document}

相关内容