0

Hey currently I'm working on open edX and I am having some sort of problem in uploading a content like (&,<,>) mathematical symbols in Multiple Choice. Is there any sort of solution for this.

2 Answers2

0

If you want to add mathematical problems/equations you can use MathJax https://edx.readthedocs.io/projects/open-edx-building-and-running-a-course/en/latest/exercises_tools/mathjax.html

Or

You can use HTML values/codes for those ASCII characters, click "advanced editor" and add.

enter image description here enter image description here

Isanka Wijerathne
  • 3,746
  • 3
  • 26
  • 34
0

This question is a little old, but answering in case it helps someone stuck with the same issue.

Open Edx Problem configuration (for example, Multiple Choice, Checkboxes etc.) do not allow certain mathematical symbols which conflict with HTML - for example, <, > etc. You can use the equivalent HTML tags for these (&lt; for < and &gt; for >) and they will display correctly.

PBaj
  • 31
  • 3