4

Just wondering if anyone knows how to add Unicode input in pluto.jl. For example, if I want to input a Unicode character for sigma, I would type \sigma in vs code, and the autocomplete will change it to σ. Any ideas how I could do the same in pluto.jl

imantha
  • 2,676
  • 4
  • 23
  • 46

1 Answers1

4

You should be able to do the same in pluto: type \sigma, then hit TAB and it should change to σ.

François Févotte
  • 19,520
  • 4
  • 51
  • 74
  • Alternatively (e.g. for characters which do not have a Latex style tab completion), you can copy / paste unicode characters from any website (e.g. https://unicode-table.com/) to Pluto. – lungben Mar 09 '21 at 14:27