Line break in title of Rpres

53 views Asked by At

I am crafting my presentations as .Rpres as of lately. My title is a little long and breaks at an arbitrary location. Is there a way to influence this behavior? I tried HTML (<br>) and | but no success... It sounds so elementary, but I did not find any info here or on Google.

Is there a way to display the heading in two lines?
========================================================

It should look kind of like this:

Is there a way to display 
the heading in two lines?
========================================================

Thanks a lot

2

There are 2 answers

1
Aman Sharma On

<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>

1
YupMa On

If you are using html than <br> tag will break the text to next line

<h3>Is there a way to display<br>
the heading in two lines?</h3>