我正在尝试用乳胶制作一个简单的表格

我正在尝试用乳胶制作一个简单的表格

我想要这样的东西。我知道这很艰难

我查看过,但找不到任何可以帮助我的东西。
这是我目前的代码:

\begin{tabular}{r | l c c c c c r}
$x$ & -2 &  & 0 & & 2 & & 4 \\
\hline
$f(x)$ &  &  & 2 & & 0 & &  \\
\hline
$f'(x)$&  & $\nearrow$ & & $\searrow$ & & $\nearrow$ &
\end{tabular}

我已经用过了,tabular因为它最接近我想要的。

答案1

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath,amssymb}
\usepackage{tkz-tab}
\usetikzlibrary{calc}
\usetikzlibrary {arrows.meta,bending}

\begin{document}
    \noindent\hspace{-3cm}
    \begin{tikzpicture}
        \tkzTabInit[lgt=1,espcl=2,deltacl=1,nocadre]
        {   $x$      /1,
            $f(x)$    /1,
            $f'(x)$   /1
        }
        {   ,$-2$ , ,
            $0$, ,
            $2$, ,
            $4$
            };
        \tkzTabLine{,,,2,,0,,}
        \begin{scope}[>->,line width=1pt,>=stealth]
            \draw (4,-3.1) to [bend left=0] (5, -2.1);
            \draw (7, -2.1)to [bend left=0] (8 , -3.1);
        \end{scope}
    \end{tikzpicture}
    
\end{document}

相关内容