1

How I can write this:

enter image description here

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.

Poline Sandra
  • 463
  • 4
  • 11

1 Answers1

2

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}

enter image description here