
다음 코드를 사용하면
\documentclass[11pt]{scrartcl}
\usepackage{tikz,tkz-tab,amsmath}
\usetikzlibrary{arrows}
\begin{document}
\begin{tikzpicture}
\tikzset{arrow style/.style = {blue,->,> = latex',
shorten > = 6pt,
shorten < = 6pt}}
\tkzTabInit[espcl=5]{$x$ /1, $f(x)$ /1.5, $g(x)$ /2}{$0$ ,$1$ , $+\infty$}%
\tkzTabLine{d,-,z,+,}
\tkzTabVar%
{ D+/ / $0$ ,%
-/ -2/ ,+/ $+\infty$ / }%
\end{tikzpicture}
\end{document}
나는 얻다
위 표의 첫 번째 줄을 삭제하고 싶습니다. 즉, 나는 얻고 싶다
답변1
이와 같이:
\documentclass[11pt]{scrartcl}
\usepackage{tikz,tkz-tab,amsmath}
\usetikzlibrary{arrows}
\begin{document}
\begin{tikzpicture}
\tikzset{arrow style/.style = {blue,->,> = latex',
shorten > = 6pt,
shorten < = 6pt}}
\tkzTabInit[espcl=5]{$x$ /1, $g(x)$ /1}
{$0$ ,$1$ , $+\infty$}%
\tkzTabVar%
{ D+/ / $0$ ,%
-/ -2/ ,+/ $+\infty$ / }%
\end{tikzpicture}
\end{document}