页面中间的线

页面中间的线

是否可以在页面中间(与顶部和底部的距离相同)绘制一条独立于其余文本(可能以某种方式覆盖在文本上)的水平线(虚线)?

我只是想将它作为特殊用途的帮助热线,它将在文本的最终版本中删除,因此它是否覆盖文本并不重要。

答案1

以下是使用background包裹:

\documentclass{article}
\usepackage[a6paper]{geometry}% just for the example
\usepackage{background}
\usepackage{lipsum}% just to generate text for the example

\backgroundsetup{
  scale=1,
  angle=0,
  color=blue,
  contents={\tikz\draw[ultra thick,dotted] (current page.west) -- (current page.east);}
}

\begin{document}

\lipsum[1-3]

\end{document}

在此处输入图片描述

要使该线消失,您只需更改

\usepackage{background}

\usepackage[pages=some]{background}

相关内容