I am new to latex but I have to make a presentation in university with it (or more I want to do the presentation in LaTeX). But I am struggling with the package tikz.
So my first question is regarding the on statement which can not handle something like
<1-3, 5-6>, which is possible like in only statements. Is there a work around?Second question is about the highlight style is it possible to set different styles on different slides like highlight text on=
<1-3>and something else, text on=<5-6>?
Here is my MWE:
\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{overlay-beamer-styles, matrix}
\begin{document}
\begin{frame}
\begin{tikzpicture}[
background default text=black,
highlight/.style={
background text=blue,
},
]
\matrix [matrix of nodes, ampersand replacement=\&]{
|[highlight, text on=<1->]| . \& |[highlight, text on=<2->]| X \\
. \& X\\
};
\end{tikzpicture}
\end{frame}
\end{document}
