여백을 포함하는 색상이 지정된 직사각형 그리기

여백을 포함하는 색상이 지정된 직사각형 그리기

왼쪽, 위쪽, 아래쪽 여백을 포함하는 컬러 사각형을 그리고 싶습니다. 이 사진처럼요(테두리가 실제가 아닙니다). \감사해요 :)여기에 이미지 설명을 입력하세요

\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} 

여기에 이미지 설명을 입력하세요

관련 정보