Home > Net >  Line break in title of Rpres
Line break in title of Rpres

Time:10-05

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

CodePudding user response:

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

CodePudding user response:

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>

  • Related