ACM 交易模板中的边注(或待办事项)

ACM 交易模板中的边注(或待办事项)

我想在我正在撰写的 ACM Transactions 格式的文档中添加边注(仍为草稿形式)。但是,使用现有的软件包(如 todonotes(看起来很棒)或 ed)相当困难,因为注释总是会超出边注范围(导致编译错误)。

知道我能做些什么吗?

谢谢!

答案1

如果你的笔记和待办事项只有文本,那么你可以\pdfmargincomment使用pdf评论包裹。

\documentclass{scrartcl}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{lipsum}
\usepackage[svgnames,rgb]{xcolor}
\usepackage[subject={Todo},author={Josef}]{pdfcomment}
\begin{document}
\lipsum[1]
\pdfmargincomment[color=blue,icon=Note]{Put your notes or todos in here!}
\lipsum[1]
\end{document} 

在此处输入图片描述

相关内容