<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <div class="moz-cite-prefix">Le 10/03/2021 à 22:40, bty22 a écrit :<br>
    </div>
    <blockquote type="cite"
      cite="mid:1615412419386-0.post@n3.nabble.com">
      <pre class="moz-quote-pre" wrap="">Hello, 

I have been trying to figure out a way to add an overarching title on the
graphic window that goes above the subplots? I have titles over each of my
subplots, but I want one that is the title of the graphic window where the
subplots are shown. I want to have the title to give a summary of what the
subplots are of. 

I know it can be done in matlab through suptitle, but I couldn't find a
respective equivalent for scilab.  

Thank you for your response in advance. </pre>
    </blockquote>
    <p><br>
    </p>
    <p>The following simple code should work, but a subplot's bug
      prevents it. Let's fix it for the next scilab version:</p>
    <pre style="font-family:Monospaced;font-style:normal;font-size:12.0;"><span style="color:rgb(174,92,176);text-decoration:underline;">clf</span><span style="color:rgb(0,0,0);">,</span> <span style="color:rgb(174,92,176);text-decoration:underline;">title</span> <span style="color:rgb(188,143,143);">"The</span> <span style="color:rgb(188,143,143);">overall</span> <span style="color:rgb(188,143,143);">title"</span> <span style="color:rgb(188,143,143);">fontsize</span> <span style="color:rgb(188,143,143);">4</span>
<span style="color:rgb(174,92,176);text-decoration:underline;">subplot</span><span style="color:rgb(74,85,219);">(</span><span style="color:rgb(188,143,143);">1</span><span style="color:rgb(0,0,0);">,</span><span style="color:rgb(188,143,143);">2</span><span style="color:rgb(0,0,0);">,</span><span style="color:rgb(188,143,143);">1</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(0,0,0);">,</span> <span style="color:rgb(50,185,185);">Matplot1</span><span style="color:rgb(0,0,0);">,</span> <span style="color:rgb(174,92,176);text-decoration:underline;">title</span> <span style="color:rgb(188,143,143);">"Plot</span> <span style="color:rgb(188,143,143);">#1"</span><span style="color:rgb(0,0,0);">,</span> <span style="color:rgb(174,92,176);text-decoration:underline;">xlabel</span> <span style="color:rgb(188,143,143);">""</span>
<span style="color:rgb(174,92,176);text-decoration:underline;">subplot</span><span style="color:rgb(74,85,219);">(</span><span style="color:rgb(188,143,143);">1</span><span style="color:rgb(0,0,0);">,</span><span style="color:rgb(188,143,143);">2</span><span style="color:rgb(0,0,0);">,</span><span style="color:rgb(188,143,143);">2</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(0,0,0);">,</span> <span style="color:rgb(50,185,185);">param3d</span><span style="color:rgb(0,0,0);">,</span> <span style="color:rgb(174,92,176);text-decoration:underline;">title</span> <span style="color:rgb(188,143,143);">"Plot</span> <span style="color:rgb(188,143,143);">#2"

</span></pre>
    <p><img src="cid:part1.AD7568E5.38AB2B46@free.fr" alt=""
        moz-do-not-send="false" width="544" height="341" border="1"></p>
    <p>The position of the main title can be tuned afterwards.<br>
    </p>
    <p>Samuel<br>
    </p>
  </body>
</html>