将 pgfplots charts 下的名称重命名为 Plot

将 pgfplots charts 下的名称重命名为 Plot

我用包创建了一个图表pgfplots

\documentclass{book}

\usepackage{pgfplots}
\usepackage{newfloat}
\usepackage{amsthm,amssymb,amsmath}
\usepackage[localise]{xepersian}
\settextfont{Vazir}
%%font is here:
%% https://github.com/rastikerdar/vazir-font/blob/master/dist/Vazir.tt
\DeclareFloatingEnvironment[
      fileext=lop,
      listname={فهرست نمودارها},
      name=Plot,
      placement=tp,
      %within=section,% activate it if you want
      %chapterlistsgaps=on,% only meaningful when chapters exist
]{plot}
\begin{document}
\listofplots
\begin{plot}
\centering
\fbox{  
    \begin{tikzpicture}
    \begin{axis}[
        y tick  label  style={
        /pgf/number format/1000 sep= },
        xlabel=\rl{توان مصرف شده بر حسب کیلووات},
        ylabel=\rl{تعداد ماشین‌های مجازی},
        legend style={at={(0.5,-0.3)},
        anchor=north,legend columns=-1},
        xbar=5pt,
        ymax=270,ymin=80,
        bar width=0.9em,
        height=6cm,width=12cm,
        nodes near coords,
    ]
    \addplot 
    coordinates {(0.26,100) (0.33,150) 
            (0.45,200) (0.62,250)};
    \addplot 
        coordinates {(0.25,100) (0.31,150)
             (0.42,200) (0.61,250)};

    \legend{ B\_M,S\_S}
    \end{axis}
    \end{tikzpicture}}
    \caption{مقایسه مصرف انرژی با سیاست
    \lr{MMT}
}
\label{ch1}
\end{plot}
\end{document}

在图表名称和编号下方,它写了 Plot ... 。但我想用我的语言来写,我的意思是我想用它写نمودار而不是Plot 在此处输入图片描述

答案1

新浮点数显示的名称定义在

name=Plot

将其更改为您想要使用的任何术语。

相关内容