How I can write this:
I tried \begin{align} but I can't write in it
$$
\limsup_{|t|\to 0}\dfrac{}{}...
$$
I also tried \begin{itemize} but the same thing I can't write something in the center.
How I can write this:
I tried \begin{align} but I can't write in it
$$
\limsup_{|t|\to 0}\dfrac{}{}...
$$
I also tried \begin{itemize} but the same thing I can't write something in the center.
First of all: don't do this! LaTeX and MathJax are strangers, not friends!
Like this?
\documentclass{article}
\usepackage{enumerate}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\begin{enumerate}[(A)]
\item Hello World
\item \begin{enumerate}[(1)]
\item This is some math
\[1+2=3\qquad4+5=6\]
\item This is another item
\item \lipsum[2]
\end{enumerate}
\item Something more
\end{enumerate}
\end{document}
enumeratelist just use\begin{enumerate} \item There are... \item there exists... \item The function ... \end{enumerate}– David Carlisle Mar 11 '19 at 08:00enumerate– Denis Mar 11 '19 at 08:03