tkz-tab 中的凸凹符号

tkz-tab 中的凸凹符号

tkz-tab我对和都是新手tikz。我想用它们tkz-tab来表示函数的分析。

有没有办法像绘制箭头那样,绘制跨越整个图表单元的凸和凹的符号?

到目前为止,我尝试使用杯子和帽子符号,但结果并不合适。我想要一些像抛物线的一部分的东西。

这是一个 mwe:

\documentclass{article}
\usepackage{tkz-tab}
\usepackage{amsmath,fullpage}
\begin{document}
\begin{tikzpicture}
\tkzTabInit[lgt=2,espcl=1]{
    $x$         /1,
    $\sin(x)$   /1
}% 
{
    $-\pi$, $0$ , $\pi$ 
}%
\tkzTabLine{  , {\Huge \smile} , t , \frown , }
\end{tikzpicture} 
\end{document}

答案1

一种简单的可能性是使用\draw一些预定义的节点:

\documentclass{article}
\usepackage{tkz-tab}
\usetikzlibrary{calc}

\begin{document}

\begin{tikzpicture}
\tkzTabInit[lgt=2,espcl=1]{
    $x$         /1,
    $\sin(x)$   /1
}% 
{
    $-\pi$, $0$ , $\pi$ 
}%
\tkzTabLine{  , , t , , }
\draw[cyan,shorten >= 7pt,shorten <= 7pt] 
  ( $(T11)!0.2!(T12)$ ) to[out=-50,in=230,looseness=1.4] ( $(N21)!0.2!(N22)$ );
\draw[cyan,yscale=-1,shorten >= 7pt,shorten <= 7pt] 
  ( $(N22)!0.1!(N21)$ ) to[out=-50,in=230,looseness=1.4] ( $(T22)!0.1!(T21)$ );
\end{tikzpicture} 

\end{document}

在此处输入图片描述

相关内容