Search code examples
graphscilab

Scilab Graph Axis Title with Greek Letters


How to add greek letters like 𝜑 and LaTeX like equations at Scilab chart axis titles.

Thanks!

enter image description here


Solution

  • Quite easy, use double dollars:

    legend("$$\varphi(t)$$")
    

    You may have to play with size to have the desired rendering, i.e.

    legend("$$\large\varphi(t)$$")