easy-todo

回忆录课程和简易套餐
easy-todo

回忆录课程和简易套餐

我一直在写一本书并使用 easy-todo 包来跟踪我需要做的事情。 在另一个帖子中,有人建议我转到 memoir 类,因为它具有很大的灵活性,而且在看了一会儿之后,我也同意了。但现在我遇到了一个错误,显然 memoir 与 easy-todo 不兼容。 我收到缺少 \begin{document} 的错误。 下面是 MWE。 有办法解决这个问题吗?有没有与 memoir 兼容的类似软件包? \documentclass{memoir} \title{Interesting words} \author{Peter Flom} \usepackag...

Admin

Subfigure、submat 和 easy to do 包 - 命令 \c@lofdepth 已定义。\newcounter{lofdepth}
easy-todo

Subfigure、submat 和 easy to do 包 - 命令 \c@lofdepth 已定义。\newcounter{lofdepth}

更新: 根据答案,在 easy-to-do 包之前添加了命令 \PassOptionsToPackage{subfigure}{tocloft},问题解决了!:) 当我尝试使用 subfigure、submat 包和 easy-todo 时出现此错误: 命令 \c@lofdepth 已定义。\newcounter{lofdepth} 我尝试了其他问题中给出的一些建议,但它们不起作用。我真的需要保留这些笔记。 有谁能帮我修复它吗? 提前致谢! \usepackage{subfigure} \usepackage{subfigmat} %Quick...

Admin

具有优先级的自动待办事项列表
easy-todo

具有优先级的自动待办事项列表

我一直在使用“easy-todo”包,并查看了“todo”包,用于自动制作待办事项列表。它们允许您编写命令\todo{<todo text>},该命令既会显示在文本中,也会汇总到待办事项列表中。 但是这些包不允许您指定待办事项的重要性或紧急程度。 我想要一个待办事项包,它允许您说:\todo[2]{<todo text>}——其中 2 是这个待办事项的“重要性”。 然后,待办事项列表应根据重要性自动排列待办事项。 这个存在吗? ...

Admin

easy-todo:在​​ \tableofcontents 中添加“TODO”项
easy-todo

easy-todo:在​​ \tableofcontents 中添加“TODO”项

使用最少的示例代码 \documentclass{article} \usepackage{hyperref} \usepackage{easy-todo} \begin{document} \tableofcontents \listoftodos \section{one} \todo{note1} \section{two} \todo{note2} \end{document} 我得到以下输出 我希望在目录中看到一个项目,这样我就可以单击该项目跳转到“TODO”部分。编写命令时的默认值\listoftodos是添加一个部分。请参阅...

Admin

如果我将 easy todo 选项设置为 disable,则构建会失败
easy-todo

如果我将 easy todo 选项设置为 disable,则构建会失败

我刚刚发现传递一个disable选项会导致构建失败,我创建了一个简单的代码来重现相同的错误: \documentclass[]{article} \usepackage[disable]{easy-todo} %this failed %\usepackage[enable]{easy-todo} %this works OK \begin{document} \section{good} \todo{hi} \end{document} 错误日志信息为: ! You can't use `\unskip' in vertical mode....

Admin