我有以下代码
\listfiles
\documentclass[oneside,12pt]{scrartcl}
\usepackage[ngerman]{babel}
%\usepackage{amsmath}
\usepackage[fixamsmath,disallowspaces]{mathtools}
\begin{document}
\noindent
\underline{Verschiebare Ger{\"a}te}
\begin{equation*}
P_j(t,s_j) = \begin{cases}
Q_{j,Standby} & \text{for } t < s_j \\
Q_j(t-s_j) & \text{for }s_j \leq t\leq s_j+p_j \\
Q_{j,Standby} & \text{for } t>s_j+p_j
\end{cases}
\end{equation*}
mit
\begin{align*}
s_j &= r_j+ \Delta t\\
\Delta t &\leq tDoF
\end{align*}
\noindent
\underline{Beobachtbare Ger{\"a}te und Grundlast}
\begin{align*}
P_{Beobachtbar}(t) & \rightarrow \text{nicht steuerbar, daher vorgegeben} \\
P_{Grundlast}(t) & \rightarrow \text{nicht steuerbar, daher vorgegeben}
\end{align*}
\noindent
\underline{Unterbrechbare Ger{\"a}te} \\
$\rightarrow$ \text{ mit n verschiedenen Phasen (n beliebig aber fest)}
\end{document}
我想在带下划线的标题前添加更多空白。我试过了\\
,\newline
但没有成功。我怎样才能将标题移到底部?
答案1
您可以使用\vspace{length}
\listfiles
\documentclass[oneside,12pt]{scrartcl}
\usepackage[ngerman]{babel}
%\usepackage{amsmath}
\usepackage[fixamsmath,disallowspaces]{mathtools}
\begin{document}
\noindent
\underline{Verschiebare Ger{\"a}te}
\begin{equation*}
P_j(t,s_j) = \begin{cases}
Q_{j,Standby} & \text{for } t < s_j \\
Q_j(t-s_j) & \text{for }s_j \leq t\leq s_j+p_j \\
Q_{j,Standby} & \text{for } t>s_j+p_j
\end{cases}
\end{equation*}
mit
\begin{align*}
s_j &= r_j+ \Delta t\\
\Delta t &\leq tDoF
\end{align*}
\vspace{1cm} %%<-----------------here
\noindent
\underline{Beobachtbare Ger{\"a}te und Grundlast}
\begin{align*}
P_{Beobachtbar}(t) & \rightarrow \text{nicht steuerbar, daher vorgegeben} \\
P_{Grundlast}(t) & \rightarrow \text{nicht steuerbar, daher vorgegeben}
\end{align*}
\vspace{1cm} %%<-----------------here
\noindent
\underline{Unterbrechbare Ger{\"a}te} \\
$\rightarrow$ \text{ mit n verschiedenen Phasen (n beliebig aber fest)}
\end{document}