1. ホーム
  2. latex

[解決済み] グリッドに数字を追加する Tikz LaTeX

2022-02-15 14:04:16

質問

下のグリッドの外側に数字を追加するにはどうすればよいですか。以下のコードを試しましたが、中央揃えにならず、数字を入れることができません。

  \documentclass{article}
    \usepackage{geometry}
    \geometry{hmargin=1cm,vmargin=1cm}
    \usepackage{tikz}
    \usetikzlibrary {shapes.geometric, arrows, arrows.meta}
    \def\width{20}
    \def\hauteur{25}
    \begin{document}
    \begin{tikzpicture}[x=1cm, y=1cm]
    \draw[step=1mm, line width=0.1mm, black!5!white] (0,0) grid (\width,\hauteur);
    \draw[step=5mm, line width=0.2mm, black!10!white] (0,0) grid (\width,\hauteur);
    \draw[step=5cm, line width=0.5mm, black!10!black] (0,0) grid (\width,\hauteur);
    \draw[step=1cm, line width=0.3mm, black!15!white] (0,0) grid (\width,\hauteur);
    \end{tikzpicture}
    \end{document}

解決方法は?

を組み合わせて使ってみてはいかがでしょうか。 \foreach ループと \node の機能を利用しています。以下にソースコードを追加しました。

\documentclass{article}
\usepackage{geometry}
\geometry{hmargin=1cm,vmargin=1cm}
\usepackage{tikz}
\usetikzlibrary {shapes.geometric, arrows, arrows.meta}
    
\def\width{20}
\def\hauteur{25}
    
\begin{document}
    \begin{tikzpicture}[x=1cm, y=1cm]
    \draw[step=1mm, line width=0.1mm, black!5!white] (0,0) grid (\width,\hauteur);
    \draw[step=5mm, line width=0.2mm, black!10!white] (0,0) grid (\width,\hauteur);
    \draw[step=5cm, line width=0.5mm, black!10!black] (0,0) grid (\width,\hauteur);
    \draw[step=1cm, line width=0.3mm, black!15!white] (0,0) grid (\width,\hauteur);
    
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    %%%%%%%%%%%% ADD THE PART BELOW %%%%%%%%%%%%
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    \foreach \x in {0, ..., \width} {%
      % Bottom
      \node[anchor=north] at (\x,0) {\x};
      
      % Top
      \node[anchor=south] at (\x,\hauteur) {\x};
    }
    
    \foreach \y in {0, ..., \hauteur} {%
      % Left
      \node[anchor=east] at (0,\y) {\y};
      
      % Right
      \node[anchor=west] at (\width,\y) {\y};
    }
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    \end{tikzpicture}
\end{document}

これにより、次のような出力が得られます。

もちろん、必要であれば、まだ少し間隔を調整することができます。これはあなたが求めている結果でしょうか?