All Questions
Tagged with ifthenelse beamer
6 questions
0
votes
1
answer
83
views
beamer and \ifstrempty
EDIT. Consider the following code. I wish to avoid empty beamercolorbox, if the required item to insert therein is empty.
Consider the case of a section without a subsection, then the subsection ...
2
votes
1
answer
140
views
A funny bug with input, newcommand, ifthenelse in a beamer
First I write a tex named thequest like:
\begin{quest}
Just a problem.
\end{quest}
Then in the main tex, I write
\newtheorem{quest}{Question}
\newcommand{\Fakeframe}[1]{\ifthenelse{\equal{#1}{}}{}{
...
3
votes
1
answer
40
views
How can I access \institute content with \ifthenelse in beamer?
I try to check if \institute is empty in a beamer document. This fails.
I found the solution for \author already here:
Why does \insertauthor lead to an error inside \ifthenelse statement?
You can ...
2
votes
1
answer
52
views
Why does \insertauthor lead to an error inside \ifthenelse statement?
Using \insertauthor in \ifthenelse statement throws an error (no error if it is used elsewhere in the document). \inserttitle or \insertdate works fine. Why do I get an error when I use \insertauthor ...
2
votes
1
answer
103
views
Simple toggle animation won't work
I tried a simple toggleanimation.
First i create a bool value
If I set it to true, the if path is performed, set it to false results in the else path.
So far so good.
Within an animateinline i want to ...
2
votes
1
answer
310
views
List of Figures + Beamer? (followup)
I'm interested in making a list of figures in Beamer so that I don't have to cite each image in its caption and I can save slide space. The following example (per users Marco Daniel and Carsten) is ...