Math & Science ⇒ List of equations
List of equations
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!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
List of equations
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
List of equations
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}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
List of equations
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
List of equations
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}