Re: [racket-users] Extending DrRacket's LaTeX Shortcuts

2016-11-05 Thread Laurent
There's no official package. It's probably best to just dump the contents of this file into the existing one. Btw, I think this file should probably not belong to "gui", but it may be cumbersome to move it to a different place I guess. On Sat, Nov 5, 2016 at 3:49 PM, Robby Findler wrote: > I th

Re: [racket-users] Extending DrRacket's LaTeX Shortcuts

2016-11-05 Thread Robby Findler
I think it would be great to adjust the one that DrRacket uses to use this one. Is that in a pkg somewhere? Or would it be better to just drop it into the existing one? Robby On Sat, Nov 5, 2016 at 7:31 AM, Laurent wrote: > This may be of interest: > https://gist.github.com/Metaxal/86be1b733c0f

Re: [racket-users] Extending DrRacket's LaTeX Shortcuts

2016-11-05 Thread Laurent
This may be of interest: https://gist.github.com/Metaxal/86be1b733c0f5ad4a0cf6c58cf140436 It's a assoc list between latex math strings and unicode characters. This list is based on "anaconda/lib/python2.7/site-packages/docutils/utils/math/tex2unichar.py" itself based on http://milde.users.sourcef

Re: [racket-users] Extending DrRacket's LaTeX Shortcuts

2016-11-04 Thread Vincent St-Amour
Hi Kelly, The table's source is there: https://github.com/racket/gui/blob/master/tex-table/tex-table.rkt It doesn't look like the list is user-extensible, but you can extend it by modifying the file. To do so, you'd want to update the `tex-table` package to use a from-source version (from t

[racket-users] Extending DrRacket's LaTeX Shortcuts

2016-11-04 Thread Kelly Smith
I've been learning Racket for awhile now (it's the first language I've seriously pursued), and I can usually fumble together what I need for small projects. However, lately I've been working with Pollen, and my documents call for a lot of math symbols. I'm wondering if there's a reasonable way t