圈出表格中的数字

圈出表格中的数字

我对表格有疑问。您如何获取所附表格?在此处输入图片描述

答案1

只是为了好玩:一种以编程方式创建此表的方法。

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix,calc}
\begin{document}
\begin{tikzpicture}
\matrix[matrix of nodes,nodes in empty cells,column sep=0.2em,row sep=0.2em,
 nodes={execute at begin node={
 $\ifnum\the\pgfmatrixcurrentrow<\the\pgfmatrixcurrentcolumn
 {}\else\pgfmathtruncatemacro{\entry}{(10-\the\pgfmatrixcurrentcolumn)*
 (\the\pgfmatrixcurrentcolumn-1)/2+\the\pgfmatrixcurrentrow}
 \entry
 \fi$}}] (mat)
  { & & & & \\
    & & & & \\
    & & & & \\
    & & & & \\
    & & & & \\
  };
 \draw let \p1=($(mat-2-1)-(mat-3-2)$),\n1={90-atan2(\y1,\x1)} in 
  ($(mat-3-2)+(\n1-90:1.3ex)$) arc(\n1-90:\n1+90:1.3ex) -- 
  ($(mat-2-1)+(\n1+90:1.3ex)$) arc(\n1+90:\n1+270:1.3ex) -- cycle
 node[circle,draw,inner sep=1.3ex] at (mat-5-4){};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容