如何拥有取决于 Latex Beamer / tikz 中幻灯片的固定尺寸数字?
我有一张 tikz 图片,其中有一个圆形节点,里面有一个数字。 我希望这个数字随着幻灯片的变化而变化,但大小固定。 (->不要搞乱这个圈子)。
这个不起作用,圆圈变得很大,好像必须容纳所有 3 个数字。
\tikz[baseline]
\node [fill=blue!20,draw,circle,anchor=base] (node1)
{
\only<1-3>{3} \only<4-6>{8} \only<7->{11.5}
};
这里,幻灯片 1-3 上的值为 3,幻灯片 4-6 上的值为 8,其他值为 7。
I have a tikz picture with a circle node which has a number inside.
I want this number to change with the slides but to be of fixed size. (-> not mess up the circle).
This one isn't working, the circle gets as big as if it has to hold all 3 numbers.
\tikz[baseline]
\node [fill=blue!20,draw,circle,anchor=base] (node1)
{
\only<1-3>{3} \only<4-6>{8} \only<7->{11.5}
};
Here the values are 3 on slides 1-3, 8 on slides 4-6 and else 7.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我观察到以下情况:
总而言之,这对我有用(我尝试过):
编辑:这适用于正确的基线:
I observed the following:
To conclude, this works for me (I tried it):
EDIT: This works with the correct baseline:
有几种方法可以做到这一点:
There are a couple of ways to do this: