Quizera supports formatted text in questions, answers, and assessment descriptions.
Quizera text boxes support plain text by default, plus richer formatting when your quiz needs structure, code snippets, or proper mathmatical notation.
Text formatting
Headings, paragraphs and dividers
### My Section
---
This is the section description.
Topics Outline:
- Plain-text
- Code snippets
- Equations
My Section
This is the section description.
Topics Outline:
- Plain-text
- Code snippets
- Equations
Italic, bold, emphasis, and links
>Use *italic*, **bold**, ***bold italic***, `special emphasis`, and [links](https://quizera.ai/formatted-text) - even within a quote block.
Use italic, bold, bold italic,
special emphasis, and links - even within a quote block.
Code formatting
Inline code
What does `echo $name;` output?
What does echo $name; output?
Code block
What does this PHP code output?
```php
$name = 'Josh';
if (true) {
$name = 'Robert';
}
echo $name;
```
What does this PHP code output?
$name = 'Josh';
if (true) {
$name = 'Robert';
}
echo $name;
JavaScript
What does this JavaScript function return?
```javascript
function double(number) {
return number * 2;
}
double(4);
```
What does this JavaScript function return?
function double(number) {
return number * 2;
}
double(4);
Python
What is printed?
```python
scores = {
"math": 95,
"science": 88
}
print(scores.get("history", "Not Found"))
```
What is printed?
scores = {
"math": 95,
"science": 88
}
print(scores.get("history", "Not Found"))
SQL
Which rows are returned?
```sql
SELECT name, score
FROM attempts
WHERE score >= 80
ORDER BY score DESC;
```
Which rows are returned?
SELECT name, score
FROM attempts
WHERE score >= 80
ORDER BY score DESC;
JSON
Which field stores the participant score?
```json
{
"participant": "Alex",
"score": 8,
"total": 10
}
```
Which field stores the participant score?
{
"participant": "Alex",
"score": 8,
"total": 10
}
HTML
Which tag creates a link?
```html
<a href="https://quizera.ai">Quizera</a>
```
Which tag creates a link?
<a href="https://quizera.ai">Quizera</a>
Math and equation formatting
Use inline math for short expressions and block equations for larger formulas. Quizera renders math visually in questions, answers, results, and print views.
\( ... \)
\[ ... \]
Inline math
Solve for \( x \) when \( x + 4 = 10 \).
Solve for \( x \) when \( x + 4 = 10 \).
Block equation
Use the quadratic formula:
\[ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \]
Use the quadratic formula:
\[ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \]
Fractions
Simplify \( \frac{12}{16} \).
\[ \frac{12}{16} = \frac{3}{4} \]
Simplify \( \frac{12}{16} \).
\[ \frac{12}{16} = \frac{3}{4} \]
Exponents and subscripts
Evaluate \( x^2 \) when \( x = 5 \).
The sequence term is \( a_1, a_2, a_3 \).
Evaluate \( x^2 \) when \( x = 5 \).
The sequence term is \( a_1, a_2, a_3 \).
Square roots
Simplify:
\[ \sqrt{64} = 8 \]
Simplify:
\[ \sqrt{64} = 8 \]
Parentheses and grouped expressions
Expand:
\[ (x + 3)(x - 2) \]
Expand:
\[ (x + 3)(x - 2) \]
Inequalities
Which value satisfies \( 2x + 1 > 9 \)?
Which value satisfies \( 2x + 1 > 9 \)?
Greek letters
In statistics, \( \mu \) often represents the mean and \( \sigma \) represents standard deviation.
In statistics, \( \mu \) often represents the mean and \( \sigma \) represents standard deviation.
Summation
What does this expression represent?
\[ \sum_{i=1}^{n} i \]
What does this expression represent?
\[ \sum_{i=1}^{n} i \]
Integrals
Evaluate the integral:
\[ \int_0^1 x^2 \, dx \]
Evaluate the integral:
\[ \int_0^1 x^2 \, dx \]
Limits
Find the limit:
\[ \lim_{x \to 0} \frac{\sin x}{x} \]
Find the limit:
\[ \lim_{x \to 0} \frac{\sin x}{x} \]
Probability
What does \( P(A \mid B) \) mean?
What does \( P(A \mid B) \) mean?
Statistics
Use the z-score formula:
\[ z = \frac{x - \mu}{\sigma} \]
Use the z-score formula:
\[ z = \frac{x - \mu}{\sigma} \]
Chemistry-style notation
Water is written as \( \mathrm{H_2O} \).
Carbon dioxide is \( \mathrm{CO_2} \).
Water is written as \( \mathrm{H_2O} \).
Carbon dioxide is \( \mathrm{CO_2} \).
Piecewise functions
Evaluate the function:
\[
f(x)=
\begin{cases}
x^2 & x > 0 \\
0 & x = 0 \\
-x & x < 0
\end{cases}
\]
Evaluate the function:
\[ f(x)= \begin{cases} x^2 & x > 0 \\ 0 & x = 0 \\ -x & x < 0 \end{cases} \]
Matrices
Find the determinant:
\[
\begin{bmatrix}
1 & 2 \\
3 & 4
\end{bmatrix}
\]
Find the determinant:
\[ \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} \]
Formatting tips
Unsupported and limited features
- Raw HTML is stripped for safety. Use Quizera formatting instead of HTML tags.
- Scripts, embeds, iframes, and custom HTML widgets are not supported.
- Questions currently support one optional image per question.
- Uploaded images are separate from text. You cannot insert uploaded images inside the middle of a paragraph.
- Very large tables or highly complex layouts may not display well on mobile or print.
- Advanced LaTeX packages are not available. Use standard KaTeX-style math notation.