How to shift the overlay slide numbers of all content in a group all by the same integer? How to define slide numbers relative to a reference point (that is an integer)?
I often make a group of content with complicated overlays and then realize I need to show some other content in the same frame before showing the existing group. Then I need to manually, say, add 1 to each overlay number. When this happens, the relative sequence of the overlays within the group should stay the same.
How can I set the overlay numbers within a group only relative to the same reference point (i.e., an integer), and then just change this one reference point to shift the number of the slide on which each part in the group appears all by the same number?
In the following example, the two lines of text appear on the second and the first slides:
\documentclass{beamer}
\begin{document}
\begin{frame}
\uncover<2->{Appear second}\\
\uncover<1->{Appear first}
\end{frame}
\end{document}
By changing a single reference point, I would like to change the result to the following (shift the item that appear in the fist slide to the second slide, and shift the item that appear in the second slide to the third slide - everything shifts by the same number, here 1):
\documentclass{beamer}
\begin{document}
\begin{frame}
Newly added content\\
\uncover<3->{Appear second}\\
\uncover<2->{Appear first}
\end{frame}
\end{document}




<+->and<.->syntax? Or more generally,<+(num)->and<.(num)->. However, in atikzpicture, I'm not sure if this is going to simplify or complicate matters for you. – Herr K. Jul 08 '19 at 17:28<+->and know about the rest, but I am not sure how to use them to solve my problem. In particular, I don't think I really understand<.->even though I have read the part describing it in the documentation multiple times. – tvk Jul 09 '19 at 20:49tikzpicture, since the order of the drawing commands does not necessarily coincide with the order you want the effect to appear. You should at least include an MWE that's closer to the problem you're dealing with. – Herr K. Jul 09 '19 at 21:16tikzpicturewould change things. Note that in my MWE the order of the text is the reverse of the order I want the parts to appear. I will remove the reference to TikZ to avoid confusion. – tvk Jul 10 '19 at 07:26