[julia-users] Re: How to produce the ≉ symbol?

2016-06-03 Thread jw3126
Thanks, guys it works! 

On Friday, June 3, 2016 at 12:16:00 PM UTC+2, Avik Sengupta wrote:
>
> The canonical list of completions is in the latex_symbols.jl file within 
> the julia source
>
> https://github.com/JuliaLang/julia/blob/master/base/latex_symbols.jl#L546
>
> On Friday, 3 June 2016 10:45:16 UTC+1, Pablo Zubieta wrote:
>>
>> Use `\napprox`
>>
>

[julia-users] Re: How to produce the ≉ symbol?

2016-06-03 Thread Avik Sengupta
The canonical list of completions is in the latex_symbols.jl file within 
the julia source

https://github.com/JuliaLang/julia/blob/master/base/latex_symbols.jl#L546

On Friday, 3 June 2016 10:45:16 UTC+1, Pablo Zubieta wrote:
>
> Use `\napprox`
>


[julia-users] Re: How to produce the ≉ symbol?

2016-06-03 Thread Pablo Zubieta
Use `\napprox`


[julia-users] Re: How to produce the ≉ symbol?

2016-06-03 Thread jw3126
Okay, thanks. I tried

`\approx + tab + go 1 back + \not + tab`

It gives me the same thing as

`\not + tab + \approx + tab`

on ubuntu with both atom and jupyter. It gives me something that does look 
roughly but not exactly like ≉. I think it is two symbols on top of each 
other, a slash thingy and ≈. Anyway julia does not like it:

`

LoadError: syntax: invalid character "̸"
while loading In[38], in expression starting on line 1
`



On Friday, June 3, 2016 at 10:16:21 AM UTC+2, Jutho wrote:
>
> (on Mac): what seems to work is to first use \approx + tab to get ≈, and 
> then go back one character and type \not + tab. If you first use \not + 
> tab, and then start typing \approx, the not acts only on the \ . If you 
> write \not\approx + tab, the \not is not being substituted.