繪製包含邊距的彩色矩形

繪製包含邊距的彩色矩形

我想繪製一個包含左、上、下邊距的彩色矩形。就像這張圖一樣(邊框不是真的)。 \謝謝 :)在此輸入影像描述

\documentclass{book}
\usepackage{showframe}
\usepackage{tikz}
\begin{document}
    \begin{tikzpicture}[scale=0.88]
    \draw [color=blue,fill=blue] (0,-16.9) rectangle (4,5)  ;
    \end{tikzpicture}
\end{document}

答案1

從我上面的評論來看:

\documentclass{article}
\usepackage{tikz}
\usepackage{eso-pic}
\begin{document}
\AddToShipoutPictureBG*{%
    \begin{tikzpicture}[remember picture,overlay]
    \fill[blue] (current page.north west) rectangle
    ([xshift=4cm]current page.south west) node[midway,fill=yellow,minimum
    width=2cm,minimum height=5cm]{};
\end{tikzpicture}}
Hello!
\end{document}

在此輸入影像描述

確實,您tikz不需要僅有的但是一旦你想要一些更花哨的東西,如果沒有必要的話,這是非常方便的。

答案2

你不需要像 TikZ 這樣的大鐵鎚來破解這個難題:

\documentclass[12pt]{article}
\usepackage[svgnames]{xcolor}
\usepackage{eso-pic}
\usepackage{ebgaramond}

\begin{document}

\AddToShipoutPictureBG*{%\AtPageLowerLeft{%
\color{NavyBlue!80}\rule{\dimexpr1in + \oddsidemargin}{\paperheight}}
Fiddle dee dee!

\end{document} 

在此輸入影像描述

相關內容