我正在尝试使用\listoftodos
包将 添加todonotes
到我拥有的模板文件中。我已使用\todo[inline]{Write abstract \ldots}
和添加了两个待办事项\todo{Fill in these details \ldots}
。我正在使用 TextMate 在 Mac Osx 上呈现我的文档。
最后,预期的行为和样式todonotes
文档带有超链接和颜色如下所示:
您对如何调试渲染待办事项的样式问题有什么想法吗?
答案1
将选项添加[colorinlistoftodos]
到您的文档类,请参阅1.2 包选项,p.4:colorinlistoftodos。
待办事项列表中的颜色:
在待办事项列表中的所有项目前添加一个彩色小方块。
对于超链接,您需要\usepackage{hyperref}
或不需要框\usepackage[hidelinks]{hyperref}
。
梅威瑟:
\documentclass[colorinlistoftodos]{scrartcl}
\usepackage[hidelinks]{hyperref}
\usepackage{todonotes}
\begin{document}
\listoftodos
\section{Contents}
\todo[color=green!40]{And a green note}
test text \todo{test}
\todo{Make a cake \ldots}
\todo[linecolor=green!70!white, backgroundcolor=blue!20!white,
bordercolor=red]{Anything but default colors}
\end{document}