Announcing Fancy Math equations on Free2z
FREE2Z

Announcing Fancy Math equations on Free2z

Introducing support for LaTeX equations via remark-math on Free2z, allowing users to create beautifully typeset writing with examples of inline and display math. Start creating with helpful resources provided.

March 17, 2022· 2 min read
390.6 score

support via remark-math

I'm pleased to announce support for via remark-math.

Here are some examples of what you can do.

Inline math

To highlight some bit of math, you can wrap the text with two $
as in:

> Some text and some math: $$z_{0}, z_{1}, ... z_{n}$$

Some text and some math:

Display Math

You can also set off a whole equation with blank lines and $$.
So, for instance, the following code:

$$\int_{0}^{n} x^{2}dx$$  

You can also put display math in a block quote with >. So:

> Check this out!> $$> \int_{1}^{\infty} \frac{dx}{x^2} = 1> $$

Check this out!
$$
\int_{1}^{\infty} \frac{dx}{x^2} = 1
$$

Note that a single dollar sign will be a literal: $80 is $80.

If for some reason you want two dollar signs in a row,
you can escape the second one. $\$ renders: $$. Or, you could use inline code: $$.

Conclusion

is powerful and can help you create
beautifully typeset writing.
I'm excited to see what people do with it
on free2z! Here are some helpful resources
to get started if you are new.


Zero-Knowledge Proofs (ZKP) are used to show the
verifier that some secret belongs to some set
without providing any information about except the
correctness[5]. Let be an language defined as
$$
L = { x | g^{n} = x}
$$
it follows three properties of zero
knowledge proofs as:

  1. Completeness: Verifier will be convinced by
    the prover only if statement .
  2. Soundness: A prover cannot prove an honest
    verifier if the statement .
  3. Zero-Knowledge: If the verifier is convinced
    that is correct, even though he will not
    gain any additional information about the
    secret.

Related Articles