Overlaying text: overlayarea vs overprint #43
Closed
josephwright
started this conversation in
General
Replies: 2 comments 19 replies
-
In theory, overprint is superior to overlayarea as it automatically calculates the required height. In praxis, it does not work very well and does not seem to get used very often. |
Beta Was this translation helpful? Give feedback.
8 replies
-
More-or-less random example: \begin{frame}<1-| handout:1-2>{Explananda}
\begin{block}{Qualia}
\alert{Qualia} (sing.~\alert{quale}) are, very roughly, the ‘raw feels’ or phenomenal characters of some conscious mental states.
They are the qualitative features possessed by some (conscious) experiences.
\end{block}
\begin{exampleblock}<2-| handout:1-2>{Examples}
\begin{itemize}
\begin{overprint}[\linewidth]
\only<1| handout:0>{%
\item[] \mbox{ }
}%
\only<2| handout:1>{%
\item The raw look (visual feel) of red things.
The phenomenal redness of post boxes, ripe tomatoes and oxygenated blood.
\item The raw look of green things.
The phenomenal greenness of healthy grass, evergreens and first aid boxes.
}%
\only<3| handout:2>{%
\item The raw sounds (auditory feels) of police sirens and concertos.
\item The raw feels of silk, sandpaper and cotton wool.
\item The raw smells (olfactory feels) of baking bread, coffee and rotten eggs.
}%
\end{overprint}
\end{itemize}
\end{exampleblock}
\end{frame}
\begin{frame}<1-| handout:1-3>{Explananda}
\begin{block}{What-It-Is-Likeness}
The \alert{what-it-is-likeness} of certain conscious mental states refers to the fact that there is something it is like to be in those states.
\end{block}
\begin{exampleblock}<2->{Examples}
\begin{itemize}
\begin{overprint}[\linewidth]
\only<1| handout:0>{%
\item[] \mbox{ }
}%
\only<2| handout:1>{%
\item What it is like to be a bat echolocating a moth.
\item What it is like to be an octopus who has just discovered how to turn the lights out \autocite{godfrey-smith-mo}.
}%
\only<3| handout:2>{%
\item What it is like to realise one believes the light-switching octopus didn't learn the trick by reading the small print.
\item What it is like to calculate $2+2$ in one's head.
\item What it is like to find the roots of $x^2+2x-3=0$ in one's head.
}%
\only<4| handout:3>{%
\item What it is like to be a twelfth century boy experiencing one's first day as a monastic novice.
\item What it is like to be an Ancient Greek slave giving birth.
\item What it is like to experience menstrual cramping.
\item What it is like to ejaculate.
}%
\end{overprint}
\end{itemize}
\end{exampleblock}
\end{frame} Not sure it is a good example, though. |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Looking to round out (most of) the ideas in
beamerbaseoverlay
, I'm struggling to see howoverprint
adds things. It's got a very odd interface, as it relies on\onslide
but not in the way that this command works elsewhere. The internals also seem very strange, and I can't really see what it's needed for vs usingoverlayarea
and\only
or similar (e.g.\includegraphics<..>
, which is what I do routinely).Anyone got good examples here?
Beta Was this translation helpful? Give feedback.
All reactions