# Suppressing numbers in Franklin as default behavior

**URL:** https://discourse.julialang.org/t/suppressing-numbers-in-franklin-as-default-behavior/92907
**Category:** General Usage
**Created:** [January 13, 2023, 5:56am UTC](https://discourse.julialang.org/t/suppressing-numbers-in-franklin-as-default-behavior/92907 "2023-01-13T05:56:03Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![guille](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/guille/32/7505_2.png) [@guille](https://discourse.julialang.org/u/guille)
#### Post date: [January 13, 2023, 5:56am UTC](https://discourse.julialang.org/t/suppressing-numbers-in-franklin-as-default-behavior/92907/1 "2023-01-13T05:56:03Z")

</div>

I was wondering if it was possible to universally suppress numberings of equations in Franklin, by chance? In particular, it would be awesome if there was a way to have the behavior of KaTeX and/or Franklin mimic the usual LaTeX behavior when using `\[` and `\]`, which, by default, is unnumbered. (While `\begin{equation} ... \end{equation}` should give the equation a number.)

From [this post](https://discourse.julialang.org/t/how-to-suppress-equation-numbers-in-franklin/73835/6), I know that we can wrap things in `\nonumber` and/or use `\begin{equation*}` and its corresponding `\end{equation*}`, but I have a number of markdown posts that are already written and I’m mostly porting over! While writing a script to convert everything to use `\begin{equation*}` and `\end{equation*}` would be a fun little exercise, it also breaks the standard TeX flow 🙂

Thank you all in advance for the help!

---

<div class="post-metadata">

### Author: ![tlienart](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tlienart/32/7640_2.png) [@tlienart](https://discourse.julialang.org/u/tlienart)
#### Post date: [January 13, 2023, 8:36am UTC](https://discourse.julialang.org/t/suppressing-numbers-in-franklin-as-default-behavior/92907/2 "2023-01-13T08:36:56Z")

</div>

Numbering is not handled by Franklin but by CSS. If you want to fully discard numbering, you can remove [the corresponding CSS](https://github.com/tlienart/FranklinTemplates.jl/blob/981e1143e6872f04a197c8c4fdb11a042a7b1589/src/templates/common/_css/franklin.css#L271-L282) and no number will be shown anywhere (other than those explicitly added via KaTeX e.g. using `\tag`).

---

<div class="post-metadata">

### Author: ![guille](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/guille/32/7505_2.png) [@guille](https://discourse.julialang.org/u/guille)
#### Post date: [January 14, 2023, 6:20am UTC](https://discourse.julialang.org/t/suppressing-numbers-in-franklin-as-default-behavior/92907/3 "2023-01-14T06:20:58Z")

</div>

Brilliant! Thank you, wow I totally missed that CSS line it seems! 🙂
