左余白に黒い縦長の長方形

左余白に黒い縦長の長方形

文書を A5 用紙に印刷します。ヘッダーとフッター付きのテンプレートがあります。現在、レーザー ジェット プリンターが左余白に黒いマークを残してページを台無しにしています。これらのマークを隠すために、左余白に幅 5 mm の黒い縦線を描くにはどうすればよいですか。

答え1

パッケージ付きbackground

\documentclass[a5paper]{article}

\usepackage{background}
\usetikzlibrary{calc}
\newsavebox\mybox
\sbox\mybox{%
\begin{tikzpicture}[remember picture]
    \fill[black] (current page.north west) rectangle ($(current page.south west) +(5mm,0)$);
\end{tikzpicture}%
}
\backgroundsetup{
angle=0,
scale=1,
opacity=1,
color=black,
contents={%
\begin{tikzpicture}[remember picture, overlay]
    \node[anchor=west] at  (current page.west) {\usebox{\mybox}};
\end{tikzpicture}%
}
}
\begin{document}

\section{A section}
Some text\newpage

\section{Another section}
Some text

\end{document} 

ここに画像の説明を入力してください

答え2

\AddToShipoutPictureBGパッケージの助けを借りてeso-pic、各ページの端に黒い四角形を描きます。

ムウェ

\documentclass[a5paper]{article}

\usepackage{tikzpagenodes}
\usetikzlibrary{calc}

\usepackage{eso-pic}
\AddToShipoutPictureBG{%
\begin{tikzpicture}[remember picture, overlay]
    \fill[black] (current page.north west) --
                 ($(current page.north west) +(5mm,0)$) --
                 ($(current page.south west) +(5mm,0)$) --
                 (current page.south west);
\end{tikzpicture}%
}

\begin{document}

\section{A section}
Some text\newpage

\section{Another section}
Some text

\end{document} 

出力

ここに画像の説明を入力してください

関連情報