Reputation: 3042
In Julia I understand I can do 2 != 3
to get false
, and can also type latex, e.g. \alpha <tab>
gives α
.
However, I want to type the symbol ≠
, and in latex that would be \neq
. However, in Julia when I try \neq <tab>
, I do not get that symbol. Instead, I get two autocomplete possibilities: neither of which I want: \neqsim \nequiv
.
How do I type this symbol?
Upvotes: 5
Views: 1641
Reputation: 69879
You can copy-paste any symbol you are investigating in Julia REPL in help mode to get information how to type it:
help?> ≠
"≠" can be typed by \ne<tab>
Upvotes: 5