使用展示案例

使用展示案例

我刚刚在三周前安装了 LaTeX,我写了大约 20 页的数学课程作业。我对数组有点问题 - 我试图使用类似的东西dcases来显示分段函数。我的函数涉及分数,它们太小了,但我似乎无法理解其他人对这个问题的回答,因为我不熟悉这些包等。请你看看我的文档设置,如下所示,并指出我做错了什么?当我使用这个amsmath包时,页面末尾的东西会消失,一切都会移动!

\documentclass[11pt]{article}       % use "amsart" instead of "article" for AMSLaTeX format
%\usepackage{geometry}                      % See geometry.pdf to learn the layout options. There are lots.
%\geometry{a4paper}                         % ... or a4paper or a5paper or ... 
%\geometry{landscape}                       % Activate for for rotated page geometry
%\usepackage[parfill]{parskip}          % Activate to begin paragraphs with an empty line rather than an indent
%\usepackage{graphicx}              % Use pdf, png, jpg, or eps with pdflatex; use eps in DVI mode
                                % TeX will automatically convert eps --> pdf in pdflatex        
%\usepackage{mathtools}
\usepackage{amssymb}
%\usepackage[hmargin=2.5cm,vmargin=3cm,bindingoffset=3cm]{geometry}
\usepackage[margin=0.8in,include foot]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{Chloe Jones A2460906}
\chead{TMA MST326 03}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}
\title{TMA MST326 03}
%\author{Chloe Jones A2460906}
%\date{March 2015}                          % Activate to display a given date or no date
\begin{document}
%\maketitle


H= \begin{array}{lr}
 \\
0 & : \textrm{n even,}\ \  n\neq2\\
\\
 \frac{5\pi + 2n\pi +  5\pi - 2n\pi  }{ \pi ^2 \left({4 - n^2  }\right)}    & :  \textrm{n odd}
 \end{array}
\right.

答案1

cases软件包提供的环境已amsmath为您的数学表达式做好了准备。请注意,环境cases以文本样式的数学模式(又称内联数学模式)呈现每一行。如果您不需要节省空间,请考虑使用环境dcases:它以显示样式的数学模式显示分数项,并增加行之间的空间。

无论哪种方式,整个表达式(以 开头H=)都必须处于数学模式。这可以通过将其放在\[ ... \]组中来实现。

在此处输入图片描述

\documentclass[11pt]{article} 
\usepackage{mathtools} % loads 'amsmath' package, provides 'dcases' env.
\begin{document}
Using a \texttt{cases} environment:
\[
H= \begin{cases}
0 & \text{if $n$ even, $n\neq2$}\\
\frac{5\pi + 2n\pi +  5\pi - 2n\pi}{\pi^2 (4 - n^2)} & \text{if $n$ odd}
 \end{cases}
\]

\bigskip
Using a \texttt{dcases} environment:
\[
H= \begin{dcases}
0 & \text{if $n$ even, $n\neq2$}\\
\frac{5\pi + 2n\pi +  5\pi - 2n\pi}{\pi^2 (4 - n^2)} & \text{if $n$ odd}
 \end{dcases}
\]
\end{document}

附录-- 正如@daleif 在评论中所说,dcases*环境也可能令人感兴趣。它与dcases环境的不同之处在于材料字符&会自动置于文本模式,无需使用\text{...}包装器。使用dcases*环境,可以编写如下解决方案:

\[
H= \begin{dcases*}
0 & if $n$ even, $n\neq2$\\
\frac{5\pi + 2n\pi +  5\pi - 2n\pi}{\pi^2 (4 - n^2)} & if $n$ odd
\end{dcases*}
\]

相关内容