[sage-devel] Re: Why \wedge works but \vee does not?

2015-05-26 Thread john_perry_usm
It's not a bug. The backslash is used in string formatting: \v has some meaning, while \w does not. See http://pythonweb.org/projects/webmodules/doc/0.5.3/html_multipage/lib/node48.html Unfortunately, the backslash is also used in LaTeX formatting. I discovered a long time ago that it's best

[sage-devel] Re: Why \wedge works but \vee does not?

2015-05-25 Thread Volker Braun
Looks like a bug in matplotlib's internal TeX processor. It does understand e.g. \curlyvee which, one would have thought, is more obscure. On Monday, May 25, 2015 at 10:48:30 AM UTC+2, Jori Mäntysalo wrote: Strange: L=LatticePoset({0:['A', 'x', 'B'], 'A': ['y'], 'x': ['y', 'C'], 'B':

Re: [sage-devel] Re: Why \wedge works but \vee does not?

2015-05-25 Thread Jori Mäntysalo
On Mon, 25 May 2015, Volker Braun wrote: Looks like a bug in matplotlib's internal TeX processor. It does understand e.g. \curlyvee which, one would have thought, is more obscure.  OK. Somebody wants to open ticket for them? At least this works with newest version available for Fedora 21, so

[sage-devel] Re: Why \wedge works but \vee does not?

2015-05-25 Thread John H Palmieri
For me, it works using a raw string: title=r$A \wedge B=1$ and $A \vee B=0$. Have you tried that? (I don't know if it's a bug: I think it's always safer to use raw strings when the strings contain backslashes.) John On Monday, May 25, 2015 at 1:48:30 AM UTC-7, Jori Mäntysalo wrote:

Re: [sage-devel] Re: Why \wedge works but \vee does not?

2015-05-25 Thread Jori Mäntysalo
On Mon, 25 May 2015, John H Palmieri wrote: For me, it works using a raw string:     title=r$A \wedge B=1$ and $A \vee B=0$. Thanks, it works! (Of course... I stupid.) -- Jori Mäntysalo