{% extends 'markup/base.html' %} {% block pagetitle %}: Markup help{% endblock pagetitle %} {% block breadcrumb_items %} {{ block.super }} Help Plain text {% endblock %} {% load process_markup %} {% block content %}

Plain text help

Mathematics

You can delimit inline maths using dollar signs like this: $ ... $.

For on-line maths, use escaped angular brackets \[ ... \] or double-dollar delimiters $$ ... $$.

If you write:

{{ snippets.maths_inline_online }}

You will get:

{{ snippets.maths_inline_online|process_markup:'plain' }}
{% with language='plain' %}

Math snippets

{{ math_snippets.length }} {% for snippet in math_snippets %}

{{ snippet.title }}

{{ snippet.raw }}
{{ snippet.raw|process_markup:language }}
{% endfor %}
{% endwith %} {% endblock content %}