我有以下序列定义:
我找不到在 Latex 中编写此代码的方法。有什么提示可以告诉我从哪里开始吗?
答案1
由于其他cases
问题询问了一些具体问题,这里有一个工作示例:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
g(n) =
\begin{cases}
\frac{2}{3}n & \text{wenn } n \equiv 0 \mod 3,\\
\frac{4}{3}n + \frac{1}{3} & \text{wenn } n \equiv 1 \mod 3,\\
\frac{4}{3}n - \frac{1}{3} & \text{wenn } n \equiv 2 \mod 3.
\end{cases}
\]
\end{document}
这mathmode
texdoc
文档对于回答这类问题非常有帮助。您可以使用或其等效工具在系统上找到它。
答案2
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
g(n) = \begin{cases}
\frac{2}{3} n &\ text{wenn } n \equiv 0 \mod 3 \\
\frac{4}{3} n - \frac{1}{3} & \text{ wenn } n \equiv 1 \mod 3 \\
\frac{4}{3} n + \frac{1}{3} & \text{ wenn } n \equiv 2 \mod 3
\end{cases}
\end{equation*}
\begin{equation*}
\def\arraystretch{1.3}%
g(n) = \left\{\begin{array}{llll}
\frac{2}{3} n & \text{wenn} & n \equiv 0 & \mod 3 \\
\frac{4}{3} n - \frac{1}{3} & \text{wenn} & n \equiv 1 & \mod 3 \\
\frac{4}{3} n + \frac{1}{3} & \text{wenn} & n \equiv 2 & \mod 3
\end{array}\right.
\end{equation*}
\end{document}