使用没有单独 tex 文件的剪贴板或没有将内容设为脚注的 sepfootnotes

使用没有单独 tex 文件的剪贴板或没有将内容设为脚注的 sepfootnotes

我想使用该clipboard包在方便的地方剪切和粘贴文本,但我不想在复制时显示文本。可以这样做吗?或者,这就像使用sepfootnotes但内容不应该在脚注中(这里的警告是,我已经使用 sepfootnotes 来处理必须放在脚注中的内容)。

MWE(剪贴板):

\documentclass{memoir}
\usepackage{clipboard}
\newclipboard{notes}
\begin{document}
\Copy{test}{This should only show up when it is pasted, not when it is copied.}
\openclipboard{notes}
This should be the first line of the document. \Paste{test} 
\end{document}

MWE(sep脚注):

\documentclass{memoir}
\usepackage{sepfootnotes}
\newfootnotes{notfoot}
\begin{document}
    \notfootnotecontent{test1}{This should not be in a footnote}
    \sepfootnotecontent{test2}{This should be in a footnote}
    First line of the document. \notfootnote{test1} \sepfootnote{test2}
\end{document}

答案1

直接使用\clipboard命令即可。(我是软件包作者。)

句法:\clipboard {key} {content}

\documentclass{memoir}
\usepackage{clipboard}
\newclipboard{notes}
\begin{document}
\clipboard{test}{This should only show up when it is pasted, not when it is copied.}
This should be the first line of the document. \Paste{test} 
\end{document}

在此处输入图片描述

相关内容