将标题文本中的“图片”改为其他单词

将标题文本中的“图片”改为其他单词

我正在准备一个投影仪演示文稿,我有这部分代码

\begin{center}
        \begin{figure}
            \includegraphics[width=6cm]{img1.png}
            \caption[Figura 1]{O Círculo Osculador de $\alpha$ em $s$.}
        \end{figure}
    \end{center}

产生这个在此处输入图片描述

我想知道如何将“图 1”中的“图”一词更改为另一个单词,因为我想在投影仪演示文稿中将“图”翻译成我的语言。

提前致谢!

答案1

babel是将变量翻译成某种语言的正确包。

\documentclass{beamer}
\usepackage[portuguese]{babel}

\begin{document}
\begin{frame}
\begin{figure}%
    \centering%
    \includegraphics[width=3cm]{example-image-a}%
    \caption{text}
    \label{fig.A}
\end{figure}
\end{frame}
\end{document}

在此处输入图片描述

答案2

我通常这样做,这样我就不必使用包

\renewcommand{\figurename}{Εικόνα}

相关内容