Muboard is a tiny utility that runs a mathematicsdisplay board as a web page. Muboard lets you quickly scribblemathematics snippets using Markdown and LaTeX while presenting yourdesktop screen to others during real-world or virtual meetings.
To get started with using Muboard, click here and starttyping Markdown + LaTeX input at the text field at the bottom.
Here is an example screenshot that shows how Muboard with some contentlooks like:
Muboard can be used to create distributable boards. To try it out,copy and paste the code below into an HTML file with .html
extension:
<!DOCTYPE html><script src="https://cdn.jsdelivr.net/npm/muboard@0.5.1"></script><textarea>
# The Möbius function
For any positive integer $ n $, the Möbius function $ \mu(n) $ is
defined as follows:
$$ \mu(1) = 1; $$
If $ n > 1, $ write $ n = p_1^{a_1} \dots p_k^{a_k} $ (prime
factorization). Then
\begin{align*}
\mu(n) & = (-1)^k \text{ if } a_1 = a_2 = \dots = a_k = 1, \\
\mu(n) & = 0 \text{ otherwise}.
\end{align*}
If $ n \ge 1, $ we have
$$
\sum_{d \mid n} \mu(d) =
\begin{cases}
1 & \text{ if } n = 1, \\
0 & \text{ if } n > 1.
\end{cases}
$$
Now open this file with a web browser. This is a self-renderingdistributable board file. It renders itself to look like this:mu.html.
The code snippet in the previous section shows how we can create aself-rendering document with a single line of HTML code but thisbrevity comes at the cost of standard conformance. For example, therequired <title>
element is missing from the code. Further the<textarea>
element is not closed. Despite the missing tags, thisexample works just fine because all web browsers follow therobustness principle.
For the sake of completeness and correctness, here is a minimal butcomplete and valid HTML example:valid-html5.html(source). It has a few more lines of codeto ensure that this HTML5 code validates successfully atvalidator.w3.org. In case you are wondering, a validHTML5 document does not require explicit <head>
, <body>
, or theclosing </html>
tags, so they have been omitted for the sake ofbrevity while maintaining completeness and correctness in thisexample.
,i
, ,d
, ,align*
, etc. toautomatically insert LaTeX delimiters for inline mathematics,display mathematics, align environment, etc. (Type ,help
in theboard input to see a complete list of supported commands.)Muboard was created originally for Offbeat Computation Club analyticnumber theory meetings that I host. During the meetings, Ineeded a place to type out mathematics formulas and render themquickly. I chose to write a tiny non-WSYIWYG tool because I prefersuch tools. It also helps in keeping the LaTeX snippets in an HTMLfile that can render itself using JavaScript.
The name Muboard is a reference to the Möbius function μ(n) whichwas the first function definition we discussed using this tool.
This is free and open source software. You can use, copy, modify,merge, publish, distribute, sublicense, and/or sell copies of it,under the terms of the MIT License. See LICENSE.md for details.
This software is provided "AS IS", WITHOUT WARRANTY OF ANY KIND,express or implied. See LICENSE.md for details.
To report bugs, suggest improvements, or ask questions,create issues.
If you like this project, follow me on Twitter or checkout the related projects TeXMe andMathBin.