OpenBoard-org / OpenBoard

OpenBoard is a cross-platform interactive whiteboard application intended for use in a classroom setting.
https://openboard.ch/
GNU General Public License v3.0
2.37k stars 426 forks source link

writing Mathematcal equations #1145

Open MUHAMMAD-RIZWAN-IDREES opened 3 hours ago

MUHAMMAD-RIZWAN-IDREES commented 3 hours ago

**I am using openboard to teach students .As i will also teach mathematics of advance level which involves equations,derivatives,integrals,summation,etc

### is there any tool or any technique that i write mathematical equations in openborad. waiting for your reply.thanks

letsfindaway commented 2 hours ago

Please check the "Latex2SVG" app, which you find in the "Applications" folder in the right palette.

Write your formula as LaTeX in the input field. You can then drag-and-drop the generated rendered formula to the board. After that, the app can again be deleted from the board, it is only necessary to generate the rendered formula.

MUHAMMAD-RIZWAN-IDREES commented 2 hours ago

How to use it Is there any guide?

On Fri, Oct 25, 2024, 11:18 AM Martin Winter @.***> wrote:

Please check the "Latex2SVG" app, which you find in the "Applications" folder in the right palette.

— Reply to this email directly, view it on GitHub https://github.com/OpenBoard-org/OpenBoard/issues/1145#issuecomment-2436958930, or unsubscribe https://github.com/notifications/unsubscribe-auth/BMNBXJQ2LZYQBK57NTNYKB3Z5HPDFAVCNFSM6AAAAABQSRLMSOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMZWHE2TQOJTGA . You are receiving this because you authored the thread.Message ID: @.***>

letsfindaway commented 2 hours ago

How to use it Is there any guide? On Fri, Oct 25, 2024, 11:18 AM Martin Winter @.> wrote: Please check the "Latex2SVG" app, which you find in the "Applications" folder in the right palette. — Reply to this email directly, view it on GitHub <#1145 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/BMNBXJQ2LZYQBK57NTNYKB3Z5HPDFAVCNFSM6AAAAABQSRLMSOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMZWHE2TQOJTGA . You are receiving this because you authored the thread.Message ID: @.>

Just search for any LaTeX guide, e.g. here: https://latex-tutorial.com/tutorials/amsmath/. But note that you can only use simple snippets. But the following works:

\begin{align*}
  f(x) &= x^2\\
  g(x) &= \frac{1}{x}\\
  F(x) &= \int^a_b \frac{1}{3}x^3
\end{align*}

and results in grafik

letsfindaway commented 2 hours ago

Some nice examples are also here: https://www.overleaf.com/learn/latex/Integrals%2C_sums_and_limits

MUHAMMAD-RIZWAN-IDREES commented 2 hours ago

Thanks, I'll check it out.

On Fri, Oct 25, 2024, 11:38 AM Martin Winter @.***> wrote:

Some nice examples are also here: https://www.overleaf.com/learn/latex/Integrals%2C_sums_and_limits

— Reply to this email directly, view it on GitHub https://github.com/OpenBoard-org/OpenBoard/issues/1145#issuecomment-2436998808, or unsubscribe https://github.com/notifications/unsubscribe-auth/BMNBXJSZVC5NBX4SU4SUWY3Z5HRO7AVCNFSM6AAAAABQSRLMSOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMZWHE4TQOBQHA . You are receiving this because you authored the thread.Message ID: @.***>

MUHAMMAD-RIZWAN-IDREES commented 1 hour ago

One help needed How to start new line In latex2svg I am using command \ but it doesn't work

On Fri, Oct 25, 2024, 12:11 PM rizwan idrees @.***> wrote:

Thanks, I'll check it out.

On Fri, Oct 25, 2024, 11:38 AM Martin Winter @.***> wrote:

Some nice examples are also here: https://www.overleaf.com/learn/latex/Integrals%2C_sums_and_limits

— Reply to this email directly, view it on GitHub https://github.com/OpenBoard-org/OpenBoard/issues/1145#issuecomment-2436998808, or unsubscribe https://github.com/notifications/unsubscribe-auth/BMNBXJSZVC5NBX4SU4SUWY3Z5HRO7AVCNFSM6AAAAABQSRLMSOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMZWHE4TQOBQHA . You are receiving this because you authored the thread.Message ID: @.***>

letsfindaway commented 1 hour ago

One help needed How to start new line In latex2svg I am using command \ but it doesn't work

It seems that \\ only works in a \begin{}... / \end{...} block. See https://www.overleaf.com/learn/latex/Aligning_equations_with_amsmath#Aligning_several_equations for more examples.