我有以下代码
\listfiles
\documentclass[oneside,12pt]{scrartcl}
\usepackage[ngerman]{babel}
%\usepackage{amsmath}
\usepackage[fixamsmath,disallowspaces]{mathtools}
\begin{document}
\underline{Verschiebare Ger{\"a}te}
\begin{math}
P_j(t,s_j) = \begin{cases}
0 & \text{for } t < s_j \\
Q_j(t-s_j) & \text{for }s_j \leq t\leq s_j+p_j \\
0 & \text{for } t>s_j+p_j
\end{cases}
\end{math}
\newline
\begin{math}
\text{with }s_j = r_j+ \Delta t\\
\Delta t\leq tDoF
\end{math}
\end{document}
我想在两个数学部分之间添加一个空行。不幸的是,该命令\newline
在\\
此上下文中不起作用。你能帮助我吗?
答案1
math
\(
和或相同$
,设计用于排队数学不显示。您需要一个显示环境,例如equation
或align
,它会自动用垂直空间偏移表达式,而不需要强制调整,例如:
\documentclass[oneside,12pt]{scrartcl}
\usepackage[ngerman]{babel}
%\usepackage{amsmath}
\usepackage[fixamsmath,disallowspaces]{mathtools}
\begin{document}
\section*{Verschiebare Ger{\"a}te}
\begin{equation*}
P_j(t,s_j) = \begin{cases}
0 & \text{for } t < s_j \\
Q_j(t-s_j) & \text{for }s_j \leq t\leq s_j+p_j \\
0 & \text{for } t>s_j+p_j
\end{cases}
\end{equation*}
with
\begin{align*}
s_j = r_j+ \Delta t\\
\Delta t\leq tDoF
\end{align*}
\end{document}