我意识到这听起来像是一个愚蠢的问题,但是我的工作中出现了很多缺失的符号,但它们就在那里!
其中一个例子是
\begin{equation} \label{eq:rgbtohsb}
\begin{center}
$Hue = \left\{\begin{array}{ccc}
\frac{g - b}{max(r,g,b)- min(r,g,b)} & \quad \text{if } & max(r,g,b) = r\\
\frac{b-r}{max(r,g,b)- min(r,g,b)} & \quad \text{if } & max(r,g,b) = g \\
\frac{r-g}{max(r,g,b)- min(r,g,b)} & \quad \text{if } & max(r,g,b) = b \\
\end{array}
Saturation = \left \{ \begin{array}{ccc}
0 & \text{if } & r = g = b\\
\frac{max(r,g,b)}{V} & \quad \text{ otherwise} \\
\end{array} $
$Value = max(r,g,b)$
$Lightness = \frac{1}{2}(max(r,g,b) + min(r,g,b)) $
\end{center}
\end{equation}
正如您所见,我确实拥有全部$
。此外,我还有\begin{center}
和\end{center}
另一个错误是,它说\begin{document}
以\end{equation}
这是我正在使用的标题
\documentclass[a4paper,11pt,twoside]{article}
\usepackage[left=2.5cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage{fancyhdr}
\usepackage{mathtools}
\usepackage[parfill]{parskip}
\usepackage{program}
\pagestyle{fancyplain}
\fancyhf{}
\rhead{\fancyplain{}{\today}}
\cfoot{\fancyplain{}{\thepage}}
\usepackage{graphicx}
{\tiny }
我确实有一个\end{document}
感谢您的帮助!
答案1
你的例子中有四个错误。
您不需要
\begin/end{center}
显示方程式;它们默认居中。您不需要在方程式环境中使用美元符号;您已经处于数学模式了。
\left
如果没有匹配,就不能有,但是如果您不想要正确的分隔符,\right
您可以使用。\right.
方程式环境中不能有空行。
修正版本(删除了不必要的内容)如下。如果您不想对方程式进行编号,可以使用equation*
代替equation
,也可以将\begin{equation*}
和缩写\end{equation*}
为\[
和\]
。最后,请注意,有预定义命令\max
和 ,\min
它们比仅输入“max”和“min”产生更好的结果。
\documentclass[a4paper,11pt,twoside]{article}
\usepackage{mathtools}
\begin{document}
\begin{equation} \label{eq:rgbtohsb}
\text{Hue} = \left\{
\begin{array}{ccc}
\frac{g - b}{max(r,g,b)- \min(r,g,b)} & \quad \text{if } & \max(r,g,b) = r\\
\frac{b-r}{max(r,g,b)- \min(r,g,b)} & \quad \text{if } & \max(r,g,b) = g \\
\frac{r-g}{max(r,g,b)- \min(r,g,b)} & \quad \text{if } & \max(r,g,b) = b \\
\end{array}
\right.
\end{equation}
%
\begin{equation}
\text{Saturation} = \left \{ \begin{array}{ccc}
0 & \text{if } & r = g = b\\
\frac{\max(r,g,b)}{V} & \quad \text{ otherwise} \\
\end{array}
\right.
\end{equation}
%
\begin{equation}
\text{Value} = \max(r,g,b)
\end{equation}
%
\begin{equation}
\text{Lightness} = \frac{1}{2}(\max(r,g,b) + \min(r,g,b))
\end{equation}
\end{document}
这amsmath 包(加载时会自动加载mathtools
)提供了许多其他数学格式化环境,其中一些(例如gather
)可能比更好equation
,具体取决于实际文档的结构。您可能还会发现阅读LaTeX 的简短介绍。