我可以教 \censor 断行吗?

我可以教 \censor 断行吗?

这类似于审查多行文本,但如果可能的话,我想继续使用该censor软件包。它的\StopCensoring/\RestartCensoring宏和实际的审查风格(大规则而不是空白)是我想要保留的东西。

以下是 MWE:

% arara: pdflatex
\documentclass{article}
\usepackage{censor}

\begin{document}
Hello, world.  \censor{This is information I would like withheld from
  public knowledge.  It is extremely sensitive.}
\end{document}

答案1

来自censor包装文档

此外,从 2.0 版开始,还提供了块审查功能,用于编辑较大的文本块。这个新命令是\blackout,使用形式为\blackout{Block of text}。这个命令的优点在于它可以方便地跨越行和段落边界。

但是,该\blackout命令只会涂黑文本的实际单词,而空格和句号仍然可见。为了解决这个问题,引入了一个新命令:

为此,\xblackoutV3.10 中引入了该命令,可以更彻底地涂黑文本,同时保留与未经审查的文档相同的布局。

以下 MWE 和屏幕截图显示了示例文档中两个命令的用法和各自的输出。

\documentclass{article}
\usepackage{censor}

\begin{document}
Hello, world.  \blackout{This is information I would like withheld from
  public knowledge.  It is extremely sensitive.}


Hello, world.  \xblackout{This is information I would like withheld from
  public knowledge.  It is extremely sensitive.}
\end{document}

在此处输入图片描述

相关内容