0

I'm trying to write the following in Notion (using KaTeX library):

enter image description here

The closest thing I've got is with this code:

L_{DNI} = \left( \text{U}_{i=1}^{8} \right) L_A

enter image description here

I would like to do the same with others letters like A,B or the intersection symbol(∩). Any idea?

Edit:

I've found the solution before this post by myselft but i want to share with the community.

Just using underset and overset can be done easily:

L_{DNI} = \left( \overset{8}{\underset{i=1}{\text{U}}} \right) L_A

enter image description here

You can replace the text field section with anything:

enter image description here enter image description here enter image description here

If you try with Unicode symbols doesn't work well:

enter image description here

Yerasito
  • 3
  • 2

1 Answers1

0

Like this?

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}
\begin{document}
\[L_{\textup{DNI}} = \left( \bigcup^{8}_{i=1} \right) L_A\]
\end{document}

enter image description here

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}

\begin{document} [L_{\textup{DNI}} = \left( \bigcup^{8}{i=1} L{D}\right) L_A] \end{document}

enter image description here

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}

\begin{document} [L_{\textup{DNI}} = \left( \bigcap^{8}{i=1} L{D}\right) L_A] \end{document}

enter image description here

Sebastiano
  • 54,118