
Con los siguientes códigos obtengo
\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}
yo obtengo
Quiero eliminar la primera línea de la tabla anterior. es decir, quiero conseguir
Respuesta1
Como esto:
\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}