Page 1 of 1

[Solved] Recurring decimals in Math editor

Posted: Wed Nov 09, 2016 11:26 pm
by rsmooo
I want to write 1/3 in decimal form: 0.3 with a dot above the 3

I have tried
0. dot 3
but that leaves a space between the decimal point and the 3

0.dot 3
doesn't work either

Is there a solution?

Re: recurring decimals in math editor

Posted: Wed Nov 09, 2016 11:28 pm
by rsmooo
Same problem using
0. oveline 3

Re: Recurring decimals in math editor

Posted: Wed Nov 09, 2016 11:41 pm
by floris v
Try

Code: Select all

dot { 0.3~  } 

Re: Recurring decimals in math editor

Posted: Thu Nov 10, 2016 2:10 pm
by keme
You can use the "nospace" modifier on a grouped object (use braces - {} - to delimit group) to avoid spacing between sub-elements:
Single digit with dot

Code: Select all

nospace {0. dot 3}
nospace {0.3 dot 3}
nospace {0.3 {3 csup .}}
...and also with overline...

Code: Select all

1 over 7 = nospace {0. overline {142857} }

Re: [Solved] Recurring decimals in math editor

Posted: Thu Nov 10, 2016 10:56 pm
by rsmooo
Thank you floris v and keme for you quick replies.
Solved.