我希望我的 pdf 案例看起来像这样
当我尝试自己做的时候,有这样的效果:
这是我的乳胶代码:
\begin{equation*}
g(x)=
\begin{cases}
\frac{x}{x-1} & \textrm{dla}\quad x<-1, \\
2\sin{\pi x} & \textrm{dla}\quad x \in \langle -1,3), \\
\frac{3x+1}{8x} & \textrm{dla}\quad x \in \langle 3,6 \rangle , \\
4x^3 & \textrm{dla}\quad x>6.
\end{cases}
\end{equation*}
请修复我的代码
答案1
编辑:现在被认为是@Barbara Beeton 的评论。
不是cases
,但array
工作正常:
\documentclass[margin=3mm, varwidth]{standalone}
\usepackage{amsmath}
\begin{document}
\[
g(x)=
\left\{\begin{array}{clc}
\frac{x}{x-1} & \textrm{dla} & x<-1, \\
2\sin{\pi x} & \textrm{dla} & x \in \langle -1,3), \\
\frac{3x+1}{8x} & \textrm{dla} & x \in \langle 3,6 \rangle , \\
4x^3 & \textrm{dla} & x>6.
\end{array}\right.
\]
\end{document}
如果希望线条之间的垂直空间更大,请在后面添加\]
命令\renewcommand\arraystretch{1.2}
。结果为:
答案2
我发现这个答案很有帮助。你只需\hfill
在要居中的内容的左侧和右侧添加即可。以下是 MWE:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
g(x)=
\begin{cases}
\hfill \frac{x}{x-1}\hfill & \textrm{dla}\quad \hfill x<-1,\hfill \\
\hfill 2\sin{\pi x}\hfill & \textrm{dla}\quad \hfill x \in \langle -1,3),\hfill \\
\hfill \frac{3x+1}{8x}\hfill & \textrm{dla}\quad \hfill x \in \langle 3,6 \rangle ,\hfill \\
\hfill 4x^3\hfill & \textrm{dla}\quad \hfill x>6.\hfill
\end{cases}
\end{equation*}
\end{document}
输出如下: