Tikz 左边距缩进

Tikz 左边距缩进

有没有更好的方法来消除 tikz 图形的缩进?到目前为止,我所拥有的是

\documentclass{article}
\usepackage[top=0cm, bottom=0cm, left=0cm, right=0cm]{geometry}
\begin{document}

% \noindent
\begin{tikzpicture}[remember picture, overlay]
    \fill[titlepagecolor] (0, -4) rectangle (15, -8); 
\end{tikzpicture}

\end{document}

如果我不使用,noindent左边会有一小块空白,我想避免这种情况,以便在页面上形成一个大矩形

答案1

您可以重新定义 的调用,\tikzpicture使其在其前面加上 ,\noindent这样就无需每次都手动执行此操作。

\documentclass{article}
\usepackage[top=0cm, bottom=0cm, left=0cm, right=0cm]{geometry}
\usepackage{tikz}
\let\svtikzpicture\tikzpicture
\def\tikzpicture{\noindent\svtikzpicture}
\begin{document}
% \noindent
\begin{tikzpicture}[remember picture, overlay]
    \fill (0, -4) rectangle (15, -8); 
\end{tikzpicture}
\end{document}

相关内容