Re: ordering terms for display
- To: mathgroup at smc.vnet.net
- Subject: [mg95669] Re: ordering terms for display
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Sat, 24 Jan 2009 06:20:18 -0500 (EST)
- Organization: The Open University, Milton Keynes, UK
- References: <glc4v4$39j$1@smc.vnet.net>
In article <glc4v4$39j$1 at smc.vnet.net>, Magician <jadoo.dost at gmail.com> wrote: > I have a few mathematica expressions. say like > > 1 + x + x^2 > > I want these to be displayed in reverse order, so that I can copy them > for use in latex. Use, display, or convert your expressions in *TraditionalForm*. For instance, In[16]:= 1 + x + x^2 // TraditionalForm Out[16]//TraditionalForm= x^2+x+1 Then, you can copy and paste the resulting output cell(s) as usual (if you use the context menu, select Copy As... LaTeX). Regards, --Jean-Marc