verybadcat/CSharpMath

& not working

BenjaNapo opened this issue · 4 comments

Hi, I want to show LaTex that is only delimited by $$, how can I do it? Because it shows this :
WhatsApp Image 2020-10-16 at 19 00 04

Can you provide some additional information? (At least show the LaTeX)

Ich & er/sie/es
and
Wir & Sie/sie

In:

<math:TextView
    Grid.Column="1"
    Margin="5,0"
    FontSize="12"
    LaTeX="{Binding Associa, Mode=TwoWay}"
    TextColor="{DynamicResource TextColor}"
    VerticalOptions="CenterAndExpand" />

You have to add \ before & : \&

See: How to type & in LaTeX?

Thank you so much !