我想在表格根中显示偶数重数,为此我想使用双线和零符号(不是虚线垂直线)。但是 \tkzTabLine{d,-,z,t} 中存在 3 个命令,即 d、t、z 命令。这些命令对我不起作用。我如何设置新命令来代替 d、t、z 命令?
- z 放置虚线和中心零点
- t 将虚线置于中心
- d 放置一个双中心条
我想定义新的命令,例如
- x 放置双线和中间零点
- y 以实线居中
\documentclass[11pt]{article}
\usepackage{color}
\usepackage{MnSymbol}
\usepackage{tkz-tab,amsmath}
\usetikzlibrary{arrows}
\begin{document}
\newcommand{\E}{\mathrm{e}}
\begin{tikzpicture}
\tikzset{arrow style/.style = {blue,->,> = latex',
shorten > = 6pt,
shorten < = 6pt}}
\tkzTabInit[espcl=2]{$x$ /1, $f'(x)$ /1.5, $f''(x)$ /2,$f(x)$/2.5}{$-
\infty$, $0$ ,$1$ , $2$ , $+\infty$}%
\tkzTabLine{ ,+,z,- ,d,-,z,+}%
\tkzTabLine{ ,-,t ,- ,d,+,t ,+}%
\tkzTabVar%
{ -/ , +/ ,-D+/ / , -/ ,+/ / }%
\end{tikzpicture}
\end{document}
答案1
咨询后的最终输出
http://ftp.cc.uoc.gr/mirrors/CTAN/macros/latex/contrib/tkz/tkz-tab/doc/tkz-tab-screen.pdf
和
第四条弧线留给 OP 作为练习;同样,带圆圈的双线也留给 OP 作为练习
\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage{tkz-tab}
\usetikzlibrary{calc}
\usetikzlibrary {arrows.meta,bending}
\begin{document}
\begin{tikzpicture}
\tkzTabInit[color,
colorT = yellow!20,
colorC = red!20,
colorL = green!20,
colorV = lightgray!20,
lgt=2,
espcl=2,
nocadre]
{$x$ /1,
$f''(x)$ /1,
$f'(x)$ /1,
$f(x)$ /1.2}
{$-\infty$ ,
$-1$,
$0$,
$1$,
$+\infty$};
\tkzTabLine{+,,+,,z,,-,,-}
\tkzTabLine{+,,-,,z,,-,,+}
\tkzTabLine{,,,,t,,,,}
% \draw[red,thick,->,shorten >= 2pt,shorten <= 4pt]
% ($.5*(N14) + .5*(M14) + (0,.5mm)$) to [bend right=30] ($.5*(N23) + .5*(M13)$);
% \draw[red,thick,->,shorten >= 7pt,shorten <= 7pt]
% ($.5*(N23) + .5*(M23) + (0,.5mm)$) to [bend right=25] ($.7*(N34) + .3*(M24) + (0,.7mm)$);
\begin{scope}[>->,line width=1pt,>=stealth]
\draw (3,-3) to [bend left=35] (2,-4);
\draw (4,-4.1) to [bend left=35] (5, -3.1);
\draw (7.7, -3.1)to [bend left=35] (8.8 , -4.1);
\end{scope}
\end{tikzpicture}
\end{document}
如果符合您的要求,请在答案左侧勾选,也可以在答案左侧向上的三角形上点赞。