P
Paperly
Back to Documentation

Content Auto-generation

Generate complex LaTeX structures like tables, matrices, and equations using natural language.

Generating Tables

Tables in LaTeX are notoriously tedious to write by hand. With Paperly, you can simply describe the table you want.

User: "Create a table comparing Python and JavaScript features with 3 rows."

The AI will output:

\begin{table}[h]
    \centering
    \begin{tabular}{|l|l|l|}
    \hline
    Feature & Python & JavaScript \\ \hline
    Typing & Dynamic & Dynamic \\ \hline
    Use Case & Data Science & Web Dev \\ \hline
    \end{tabular}
    \caption{Language Comparison}
\end{table}

Generating Equations

Describe the mathematical formula you need.

User: "Write the formula for the quadratic equation solution."
x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}

Drafting Text

You can also use the AI to generate placeholder text or draft sections of your paper.

  • "Write an abstract for a paper about machine learning optimization."
  • "Generate a dummy introduction section."