如何让 Tikz 图像移动到页面左侧?

如何让 Tikz 图像移动到页面左侧?

我使用 Tikz 绘制图像,但图像有点大,在页面中太靠右,我想让图像在页面中移动到左侧,怎么做?我尝试缩小字体大小,但这并不能使它向左移动

答案1

简要总结一下解决方案。它使您能够tikzpicture在环境中像处理图像一样处理您的figure。这样,您可以将您的宽度设置tikzpicture<factor>\textwidth

这样,您就不需要将图形与文本的宽度重叠。

\documentclass[11pt]{article}

\usepackage{blindtext}
\usepackage{filecontents}
\usepackage{tikz}
\usepackage{tikzscale}

\begin{document}
\blindtext

\begin{filecontents}{image.tikz}
 \begin{tikzpicture}
  \draw (0,0) rectangle (15,5) node [midway] {Slightly too big rectangle};;
 \end{tikzpicture}
\end{filecontents}

\begin{figure}[ht!]
 \centering
 \includegraphics[width=\textwidth]{image.tikz}
 \caption{tikz in figure}
\end{figure}
\end{document}

渲染图像

相关内容