Ich drucke mein Dokument auf A5-Papier. Ich habe eine Vorlage mit Kopf- und Fußzeile. Jetzt verdirbt mein Laserjet-Drucker die Seite, indem er schwarze Striche am linken Rand hinterlässt. Wie kann ich einen 5 mm breiten schwarzen vertikalen Streifen am linken Rand zeichnen, um diese Striche zu verbergen?
Antwort1
Mit background
Paket.
\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}
Antwort2
Mithilfe \AddToShipoutPictureBG
des eso-pic
Pakets zeichnen wir am Versandausgang jeder Seite ein schwarzes Rechteck.
MWE
\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}
Ausgabe