I'm creating a sign table,
\xpatchcmd{\tkzTabLine}{$0$}{$\bullet$}{}{}
\tikzset{t style/.style={style=dashed}}
\begin{tikzpicture}
\tkzTabInit[lgt=1,espcl=1,deltacl=0]
{ /.8, N /.8, D /.8, /.8, /.8}
{,$-1$,$0$,$1$,}
\tkzTabLine {,+,z,-,t,-,z,+}
\tkzTabLine {,+,t,+,z,-,t,+}
\tkzTabLine {,-,t,+,t,-,t,+}
\tkzTabLine {,\cap,t,\cup,t,\cap,t,\cup}
\end{tikzpicture}
I would like to have \circ, in the second row (the one with D), instead of the bullet. I understood that the first row
\xpatchcmd{\tkzTabLine}{$0$}{$\bullet$}{}{}
is used to add those bullets onto the column lines according to the syntax
\xpatchcmd{command}{search}{replace}{success}{failure}
I've tried to add
\xpatchcmd{\tkzTabLine}{$1$}{$\circ$}{}{}
but I don't know what to write in the table instead of "z".
Is it possible to add another symbol? Thank you
PS. don't mind the actual signs inside



\circinstead of bullets here, you don't have to anything else that use\xpatchcmd{\tkzTabLine}{$1$}{$\circ$}{}{}. It works nicely. So what is the point in your question? And not related but please post a full compilable MWE so that we don't have to guess what package you load. – SebGlav May 27 '21 at 12:41\circs elsewhere? But for what purpose and where exactly? On the dashed lines? Into some cells? Anyway, I gave you an answer that allows to put anything anywhere into the table, feel free to adapt and/or to ask for improvements. – SebGlav May 27 '21 at 14:04