如何重命名 listoftodos

如何重命名 listoftodos

我正在使用法语 Babel。

我该如何重命名\listoftodos

我试过了\addto\captionsfrench{\renewcommand{\listoftodos}{Relevé des remarques}},但是没用

此致,

答案1

虽然该todonotes包支持其他语言,但它似乎不使用常规babel接口。相反,您需要按以下方式设置名称:

\makeatletter
\@todonotes@SetTodoListName{Relevé des remarques}
\makeatother

这是一个完整的例子:(当你提出新问题时,这种例子很有帮助。)

\documentclass{article}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage[french]{babel}
\usepackage{todonotes}
\makeatletter
\@todonotes@SetTodoListName{Relevé des remarques}
\makeatother
\begin{document}
\listoftodos
\section{A section}
Some text \todo{Add something here} in the document.  

\end{document}

代码输出

答案2

或者简单地....

\documentclass{article}
\usepackage{todonotes}
\begin{document}
\listoftodos[Relev\'e des remarques]
\section{A section}
Some text \todo{Add something here} in the document.  
\end{document}

相关内容