我在制作这两个变化表时遇到了困难,我试图阅读 Mungus 的文档,但我的法语水平很基础,无论如何我设法创建了这个,但它并不像我预期的那样,你们能帮助我吗,并向我解释为什么这个命令\tkzTabIma
需要参数,因为它不起作用,正如我将在我的代码中提到的那样
这些是我想要创建的表格:
我尝试创建第一个:
\documentclass[12pt, a4paper]{article}
\usepackage{amsmath, amsmfonts}
\usepackage{tikz}
\usepackage{tkz-tab}
\begin{document}
\begin{tikzpicture}
\tkzTabInit[espcl=1.5]%
{$x$/1,$P_n'(x)$/1, $P_n(x)$/2}{$-\infty$,$0$,$x_{n_0}$, 1, $x_{n_1}$, $\dots$, $2k$}%
\tkzTabLine{,+,,+, 0, -, , -, , , $\dots$, +}%
\tkzTabVar{- /$-\infty$ , R/,+/, R /, - / , }
\tkzTabIma{1}{3}{2}{0}
\tkzTabIma{1}{3}{4}{0} %why is this not going to third row as it should ?
\end{tikzpicture}
\end{document}
结果如下:
答案1
此代码不使用\tkzTabIma
。
使用\tkzTabInit[espcl=1.5, help]
将显示节点的名称。
\documentclass[12pt, a4paper]{article}
\usepackage{amsmath, amsfonts}
\usepackage{tikz}
\usepackage{tkz-tab}
\begin{document}
\begin{tikzpicture}
\tkzTabInit[espcl=1.5]%
{$x$/1,$P_n'(x)$/1, $P_n(x)$/2}{$-\infty$,$0$,$x_{n_0}$, 1, $x_{n_1}$, $\dots$, $2k$}%
\tkzTabLine{,+,,+, 0, -, , -, , , $\dots$, +}%
\tkzTabVar{- /$-\infty$ , R/,+/, R /, - / , }
\tkzTabIma{1}{3}{2}{$0$}
% \tkzTabIma{1}{3}{4}{0} %why is this not going to third row as it should ?
\path (N42)--node[midway,fill=white]{$0$}(N43);
\end{tikzpicture}
\end{document}