Ich möchte den Abstand zwischen den aufgelisteten Elementen vergrößern. Für jede Hilfe hierzu bin ich sehr dankbar.
\begin{equation}
\begin{array}{ll}
\text { \textbf{(a).} }~ a_{0}=\dfrac{1}{2 L} \int_{-L}^{L} f(x) ~d x \\
\vspace{3 mm}
\text { \textbf{(b).} }~ a_{n}=\dfrac{1}{L} \int_{-L}^{L} f(x) \cos \dfrac{n \pi x}{L} ~d x \\
\bigskip
\text { \textbf{(c).} }~ \displaystyle b_{n}=\dfrac{1}{L} \int_{-L}^{L} f(x) \sin \dfrac{n \pi x}{L} ~d x
\end{array}
\end{equation
Antwort1
Hier sind ein paar Möglichkeiten, die ich kenne:
\documentclass{article}
\usepackage{amsmath}
\renewcommand{\arraystretch}{4} % to change spacing of every row by some factor
\begin{document}
\begin{equation}
\begin{array}{ll}
\text { \textbf{(a).} }~ a_{0}=\dfrac{1}{2 L} \int_{-L}^{L} f(x) ~d x \\[3mm] % to add extra spacing for one row
%\vspace{3 mm}
\text { \textbf{(b).} }~ a_{n}=\dfrac{1}{L} \int_{-L}^{L} f(x) \cos \dfrac{n \pi x}{L} ~d x \\
%\bigskip
\text { \textbf{(c).} }~ \displaystyle b_{n}=\dfrac{1}{L} \int_{-L}^{L} f(x) \sin \dfrac{n \pi x}{L} ~d x
\end{array}
\end{equation}
\end{document}
Antwort2
Ich schlage vor, dass Sie eine tatsächliche enumerate
Umgebung mit einer benutzerdefinierten Bezeichnung verwenden.
\documentclass{article}
\usepackage{amsmath} % for \dfrac macro
\usepackage{enumitem} % easily customize enumerate and itemize envrionments
\usepackage{xcolor} % for \textcolor macro
\begin{document}
\textcolor{red}{before}
\begin{equation}
\begin{array}{ll}
\text { \textbf{(a).} }~ a_{0}=\dfrac{1}{2 L} \int_{-L}^{L} f(x) ~d x \\
\vspace{3 mm}
\text { \textbf{(b).} }~ a_{n}=\dfrac{1}{L} \int_{-L}^{L} f(x) \cos \dfrac{n \pi x}{L} ~d x \\
\bigskip
\text { \textbf{(c).} }~ \displaystyle b_{n}=\dfrac{1}{L} \int_{-L}^{L} f(x) \sin \dfrac{n \pi x}{L} ~d x
\end{array}
\end{equation}
\bigskip
\textcolor{red}{after}
\begin{equation}
\begin{minipage}{0.5\textwidth}
\begin{enumerate}[label=\bfseries(\alph*).]
\item $a_{0}=\dfrac{1}{2 L} \int_{-L}^{L} f(x) \,dx $
\item $a_{n}=\dfrac{1}{L} \int_{-L}^{L} f(x) \cos \dfrac{n \pi x}{L} \,dx $
\item $\displaystyle b_{n}=\frac{1}{L} \int_{-L}^{L} f(x) \sin \frac{n \pi x}{L} \,dx$
\end{enumerate}
\end{minipage}
\end{equation}
\end{document}