使用 Latex 生成六个金字塔点

使用 Latex 生成六个金字塔点

我不知道该把这个问题放在哪里,但是是否可以使用 Latex 创建一个由六个点组成的金字塔形状的图形元素?

我无法从 Unicode 字符块中找到此符号,所以我想下次尝试使用 Latex 或类似方法制作它。如果这不起作用,那么就接受 png 图像...

下面的符号 T3=6 是我想要制作的。

点状金字塔形状

答案1

你可以用 tikz 来做。请参阅\pyrdot命令定义中的注释。

在此处输入图片描述

\documentclass[11pt]{article}
\usepackage{tikz}
\usetikzlibrary{calc}

\newcommand{\pyrdot}[1]{
    % you can tune the size of the pyramid using the scale option
    \begin{tikzpicture}[scale=.4] 
        \pgfmathsetmacro{\n}{#1}                            % define \n, the number of rows 
        \edef\m{0}                                          % define \m, the total number of circles
        \foreach \i in {1, ..., \n} {                       % vertical loop
            \foreach \k in {1, ..., \i} {                   % horizontal loop
                \fill ($(\k,-\i)+(-.5*\i,0)$) circle (4mm); % draw the circle (size = 4mm, shifted to the left)
                \pgfmathparse{int(\m+1)}                    % increment \m
                \xdef\m{\pgfmathresult}
            }
        }
        % put the text below the pyramid
        \node[anchor=north] at (current bounding box.south) {$T_{\n}=\m$};
    \end{tikzpicture}
}

\begin{document}

\section{pyramidical dots}
\pyrdot{1}
\pyrdot{2}
\pyrdot{3}
\pyrdot{4}
\pyrdot{5}
\pyrdot{6}

\end{document}

参考

相关内容