我最近正在用.Rpres制作我的演示文稿。我的标题有点长,并且在任意位置中断。有没有办法影响这种行为?我尝试了超文本标记语言(<br>)和|,但没有成功...这听起来很简单,但我在这里或谷歌上都没有找到任何信息。
Is there a way to display the heading in two lines?
========================================================它应该看起来像这样:
Is there a way to display
the heading in two lines?
========================================================非常感谢
发布于 2021-10-04 11:25:25
<pre>Is there a way to display
the heading in two lines?</pre>
<p>Is there a way to display<br> the heading in two lines?</p>
发布于 2021-10-04 11:25:39
如果您使用的是html,那么<br>标记将把文本换到下一行
<h3>Is there a way to display<br>
the heading in two lines?</h3>
https://stackoverflow.com/questions/69435138
复制相似问题