我怎样才能使方程式居中或浮动?

我怎样才能使方程式居中或浮动?

我写下以下等式,它看起来与左侧对齐。我尝试\centering

\begin{center}
...
\end{center}

但情况仍然一样。这是我所做的

\documentclass[12pt,letterpaper, openright]{article}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel} 
\usepackage{amsmath, amsthm, amsfonts, bm, amssymb}
\begin{document}

\begin{center}
\begin{equation}
f(x) =
\left\{
\begin{array}{ll}
-x^{2}, &\text{if $x < 0$;}\\
\alpha + x, &\text{if $0 \leq x \leq 1$;}\\
x^{2}, &\text{otherwise.}
\end{array}
\right.
\end{equation}
\end{center}   

\end{document}

这就是结果

在此处输入图片描述

答案1

即使你使用iwona浅色、压缩的数学字体,结果也是预期的。当然,你应该删除center方程周围的环境,正如其他人已经提到的那样:

\documentclass[12pt, letterpaper, openright]{article}
\usepackage[spanish]{babel}
\usepackage[light, condensed, math]{iwona}
\usepackage{amsmath, amssymb, amsthm, bm}

\usepackage{lipsum}

\begin{document}
\lipsum[11]
    \begin{equation}
f(x) = \begin{cases}
    -x^{2},     & \text{if $x < 0$;}\\
    \alpha + x, & \text{if $0 \leq x \leq 1$;}\\
    x^{2},      & \text{otherwise.}
       \end{cases}
    \end{equation}
\lipsum[12]
\end{document}

在此处输入图片描述

答案2

默认情况下,equation环境将方程式置于中心,因此您不需要环境center。此外,array您应该使用环境而不是使用环境cases。通过这两个更改,您的 MWE 会产生:

在此处输入图片描述

以下是更新后的代码:

\documentclass[12pt,letterpaper, openright]{article}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{amsmath, amsthm, amsfonts, bm, amssymb}
\begin{document}

\begin{equation}
  f(x) = \begin{cases}
            -x^{2}, &\text{if $x < 0$;}\\
            \alpha + x, &\text{if $0 \leq x \leq 1$;}\\
            x^{2}, &\text{otherwise.}
          \end{cases}
\end{equation}

\end{document}

答案3

如果你愿意,有一天要使用你的启动代码,你应该删除它,\begin{center}...\end{center}因为环境equation给出了居中公式。从用户@Mico的正确建议来看,你的截图与代码不同:我看到字体是伊沃纳

\documentclass[12pt,letterpaper, openright]{article}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel} 
\usepackage{amsmath, amsthm, amsfonts, bm, amssymb}
\begin{document}


\begin{equation}
f(x) =
\left\{
\begin{array}{ll}
-x^{2}, &\text{if $x < 0$;}\\
\alpha + x, &\text{if $0 \leq x \leq 1$;}\\
x^{2}, &\text{otherwise.}
\end{array}
\right.
\end{equation}


\end{document}

在此处输入图片描述

答案4

谢谢您的回答。错误是在使用\usepackage[light, condensed, math]{iwona}文档前言中也有的包时发生的,但为了简单起见,我没有附加它。

通过从包中删除数学选项iwona。去掉它后,\usepackage[light, condensed]{iwona}我得到了问题的解决方案。

相关内容