显示坐标信息的标尺

显示坐标信息的标尺

如何在 TikZ 图像的顶部和侧面显示标尺?创建 TikZ 图像时,我们需要将项目(节点、线等)放置在特定位置。如果我们通过标尺看到任何潜在点的坐标会更容易(或者有更好的方法吗?)如何在 TikZ 图像中放置标尺(它们只是为了图像开发时使用)

答案1

Z 具有help lines这种风格的目的。

在此处输入图片描述

\documentclass{article}

\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
\draw[help lines](-1,-1) grid (5,2);
\draw (-.5,-.7) -- (4.3, 1.6);
\end{tikzpicture}

\end{document}

答案2

像这样吗?

在此处输入图片描述

代码:

\documentclass[10pt,a4paper]{book}

\usepackage{tikz}
%\usepackage{graphicx}
\begin{document}
    \begin{tikzpicture}
        \draw[step=1cm,line width=1pt] (0,0) grid (11,12);
        \foreach \i in {1,2,...,11}
            \foreach \j in {1,2,...,12}
                \node at (\i-.5,\j-.5) () { \i,\j};
    \node at (5,5) {\includegraphics[width=6cm]{example-image-duck}};
    \end{tikzpicture}
\end{document}

工作完成后,您可以注释或删除网格的代码。

相关内容