-1

How can I code this equation in markdown? I'm trying this in marktext

enter image description here enter image description here

Ingmar
  • 6,690
  • 5
  • 26
  • 47
  • Is this a question about typesetting with TeX? Please explain a bit in that case. – mickep Aug 07 '22 at 15:15
  • @mickep is that oke now? – Khánh Bùi Aug 07 '22 at 15:24
  • 2
    I did not down vote, but I suggest that you instead of providing an image code give the code of a minimal example. From what I see now the only thing that comes to my mind is that there probably should be a period after the \right. – mickep Aug 07 '22 at 15:50

1 Answers1

1

Your code is almost correct. You can fix it as such:

$\left[ \begin{array}{} x + y = 1 \\ x - y = 2 \end{array} \right$

The second parameter for the array environment is needed.

isoparallel
  • 171
  • 3