Hi everyone! I'm sorry, if this problem has already been discussed before. However, I did not find anything on the internet.
What I need is combination of numbered list and numbered formula.
That must look like:
1. [formula] (2.7)
2. [formula] (2.8)
3. [formula] (2.9)
Or like:
1. [formula]
2. [formula] (16)
3. [formula]
If I just put {equation} inside {enumerate}, I get:
1.
[formula] (2.7)
2.
[formula] (2.8)
3.
[formula] (2.9)
Looks bad. Possible solutions:
a. Pasting numbered formula without new line (how??).
b. Pasting numeration appropriate to numeration of formulae (how??). We could use:
{enumerate} + $[formula]$ + (#).
Thanks!
Math & Science ⇒ List of equations
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
List of equations
Please do a Forum Search first. I remember that this problem has already been discussed (and solved).
Best regards and welcome to the board
Thorsten
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
List of equations
What I found:
Code: Select all
\usepackage{enumitem}
\begin{enumerate}
\item $y = f(x)$ % compare with this
\end{enumerate}
\begin{enumerate}
\item \rule{0pt}{1pt}\vspace*{-14pt}
\begin{equation}
\hspace{-483pt} y=f(x)
\end{equation}
\end{enumerate}
Last edited by Stefan Kottwitz on Tue May 31, 2011 11:05 pm, edited 1 time in total.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
List of equations
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
List of equations
Yeaaaaaaaaaaaaaah!!!
Code: Select all
\def\Item$#1${\item $\displaystyle#1$
\hfill\refstepcounter{equation}(\theequation)}
\begin{document}
\begin{enumerate}
\item foo
\Item $ 1+2=3 $
\item bar
\Item $f(x)=\int\limits_a^bx^2\mathrm{d}x$
\end{enumerate}