Adding Math or Other Equations
To add math or other equations, you need to use LaTeX. LaTeX is a powerful tool for formatting complex equations, and you can easily find resources online to learn more about it.
The easiest way to generate LaTeX code is by using AI tools like ChatGPT. For example, you can ask:
"Give a complex example equation and its LaTeX format." Once you have the LaTeX code, enclose it within $...$
and paste it into the editor. Your math equation will be added automatically.
Alternatively, you can use the editor's built-in fx (Equation) icon. Paste the LaTeX code into the equation input field and click Save. Ensure that the LaTeX code is written in a single line for proper rendering.
Example
Here’s an example of a complex equation and its LaTeX format:
Equation:
Quadratic formula: x = [-b ± √(b² - 4ac)] / 2a
LaTeX Format inside $$:
$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$
Paste this LaTeX code into the editor or use the equation input field to add the formula. Your math equation will render perfectly.
Adding Tables with LaTeX (KaTeX Supported)
Similar to adding math equations, you can also add tables using LaTeX (KaTeX supported). LaTeX tables provide a structured and professional way to display data in your document.
Follow these steps to add a table using LaTeX:
- Write your LaTeX table code as usual, but ensure it’s in a single line to avoid rendering issues.
- Enclose the LaTeX code with
$
at the beginning and end of the code.
- Paste the LaTeX code into the editor to render the table properly.
Example:
A simple 2x2 table in LaTeX format:
LaTeX Format for the Table (Single Line):
$ \begin{array}{|c|c|} \hline a & b \\ \hline 1 & 2 \\ \hline 3 & 4 \\ \hline \end{array} $
Once the LaTeX code is in a single line and enclosed in $
, paste it into the editor. The table will be rendered as a neat, formatted structure.
To create more complex tables, simply extend the LaTeX code with additional rows and columns. LaTeX tables offer various options for alignment and customization.
Math and Table Tips
Here are some helpful tips for working with LaTeX equations and tables:
- Ensure Single Line for LaTeX: Always write LaTeX code for equations and tables in a single line. This helps avoid formatting issues in the editor.
- Use $ for Inline Equations: To display an equation within a paragraph, enclose the LaTeX code in
$...$
.
- Avoid Using Ruled Paper: When inserting tables or equations, it's recommended not to use ruled paper, as it can create alignment issues. A blank background is better for these elements.
- Tables can be Nested: You can create nested tables by placing one table inside another. Just ensure that your LaTeX code remains properly structured.
- Preview Before Finalizing: Always preview your LaTeX equations and tables before generating the final handwritten document to ensure the formatting is correct.
Important Note:
You cannot directly edit LaTeX elements like equations or tables using the editor. To change LaTeX elements, such as adjusting the font color, bold, etc., you must modify the LaTeX code itself. The editor allows changes to visual styles (like font size, background, etc.), but the LaTeX content must be modified through LaTeX code directly.