答案1
由于您没有显示任何代码来帮助入门,我的第一个想法是使用 TikZ matrix of math nodes
。矩阵在 v3.0.0 手册的第 654 页开始进一步讨论。使用此构造,您可以非常轻松地在单元格之间绘制线条。希望以下内容可以帮助您入门!
\documentclass[tikz]{standalone}
\usetikzlibrary{matrix}
\usepackage{mathtools}
\begin{document}
\begin{tikzpicture}
\matrix (diff) [matrix of math nodes]{
& & \text{1st} & \text{2nd} \\
x & F(x) & \text{difference} & \text{difference} \\
1 & 5 & & \\
& & 3 & \\
2 & 8 & & 2 \\
& & 5 & \\
3 & 13 & & 2 \\
& & 7 & \\
4 & 20 & & 2 \\
& & 9 & \\
5 & 29 & & 2 \\
& & 11 & \\
6 & 40 & \vdots & 2 \\
& \vdots & \vphantom{13}\vdots & \vdots \\
7 & \vdots & \vdots & \vdots \\
\vdots & \vdots & \vdots & \vdots \\
};
\draw[->] (diff-3-2.east) -- (diff-4-3.170);
\draw[->] (diff-5-2.east) -- (diff-4-3.190);
\end{tikzpicture}
\end{document}