Search code examples
latexoverleaf

Equation and bulleted list


I would like create an bulleted list that contain and equation, how can I do? I have tru this but is not working and it gives me error. The package is already present in the code

\usepackage{amsmath}
\begin{itemize}
\begin{align*}

\item X_i  it is a ...

\end{align*}
\end{itemize}

This is my base: https://it.overleaf.com/latex/templates/template-lucas/tnzgmxxqppwh

My output


Solution

  • Your items seem to be mainly normal text, so I suggest to use inline math for the math parts:

    \documentclass{article}
    
    \usepackage{amsmath}
    \begin{document}
    \begin{itemize}
    \item $X_i$  it is a ...
    \end{itemize}
    \end{document}
    

    enter image description here