Imprimo mi documento en papel A5. Tengo una plantilla con encabezado y pie de página. Ahora, mi impresora láser está estropeando la página dejando marcas negras en el margen izquierdo. ¿Cómo puedo dibujar una franja vertical negra de 5 mm de ancho en el margen izquierdo para ocultar estas marcas?
Respuesta1
Con background
paquete.
\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}
Respuesta2
Con la ayuda \AddToShipoutPictureBG
del eso-pic
paquete, dibujamos un rectángulo negro en el envío de cada página.
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}
Producción