答案1
您可以使用以下命令更改名称
\renewcommand{\figurename}{New Figure Caption Name}
\renewcommand{\figureautorefname}{New Figure Autoref Name}
\renewcommand{\listfigurename}{List of Figures Modifyed}
不过,我建议使用\usepackage{listings}
然后重命名字幕
\renewcommand{\lstlistingname}{Algorithm}
\renewcommand{\lstlistlistingname}{List of Algorithms}
并使用命令\lstlistoflistings
插入所有列表的列表。这种方法不会混淆图形和您工作中可能存在的其他对象。
您可以使用以下方式插入外部代码
% firstline = 1, lastline = 10, firstnumber = 1, nolol,
\lstinputlisting[label = {alg:file_name}, caption = {Legenda}]
{file_name.m}
或者复制并粘贴到
\begin{lstlisting}
insert code here
\end{lstlisting}
您可以在以下位置找到更多建议如何将代码列表放入附录中?以及其中的链接。