在此代码中,我如何放大零?文档是德文的,我不懂德文。
\documentclass{article}
\usepackage{tkz-tab}
\begin{document}
\begin{tikzpicture}
\tkzTabInit[espcl=1.5]
{$x$ / 1 ,$f(x)$ /1 }%
{$v_1$ , $v_2$ , $v_3$ }%
\tkzTabLine{ z, , z , ,z }
\end{tikzpicture}
\end{document}
答案1
例如,您可以\tkzTabLine
使用以下命令修补命令xpatch
包,并更改代码行
\node at (Z\thetkz@cnt@impair\thetkz@cnt@lg){$0$};
和
\node[font=\Large] at (Z\thetkz@cnt@impair\thetkz@cnt@lg){$0$};
更改包含零的节点内的字体大小
代码
\documentclass{article}
\usepackage{xpatch}
\usepackage{tkz-tab}
\makeatletter
\xpatchcmd{\tkzTabLine}
{\node at (Z\thetkz@cnt@impair\thetkz@cnt@lg){$0$};} % search
{\node[font=\Large] at (Z\thetkz@cnt@impair\thetkz@cnt@lg){$0$};} % replace
{}{}
\makeatother
\begin{document}
\begin{tikzpicture}
\tkzTabInit[espcl=1.5]
{$x$ / 1 ,$f(x)$ /1 }%
{$v_1$ , $v_2$ , $v_3$ }%
\tkzTabLine{z , , z , ,z }
\end{tikzpicture}
\end{document}
结果