在句子中间获取分数

在句子中间获取分数

我正在尝试使用 Latex 输入一个包含分数的句子。

我的代码如下:

Which of the following fractions is smaller than $\frac{1}{5}$

它看起来像这样:

在此处输入图片描述

如何更改公式,使其看起来与文本更加一致?我希望文本如下所示:

在此处输入图片描述

需要一些这方面的指导。

答案1

在运行文本中我倾向于使用类似的东西3/4

如果您使用回忆录类,它会提供多种设置分数的方法。

\documentclass{memoir}
\pagestyle{empty}
\begin{document}
In memoir fractions can be typeset like 3/4 or $\frac{3}{4}$ or
\slashfrac{3}{4} or \slashfracstyle{3/4}
\end{document}

在此处输入图片描述

题外话:我希望有人能告诉我如何上传 LaTeX MWE 文件以及显示处理结果的 pdf 文件。

答案2

您甚至不需要amsmath即可获得默认的居中结果。(但您确实需要它来轻松切换到显示大小或使用其他任何大小,例如\dfrac。)

\documentclass{article}
\begin{document}
  Which of the following fractions is smaller than $\frac{1}{5}$?
\end{document}

中心分数

在标准课程的文本中,我倾向于使用,nicefrac但如果这是一组针对较低学生的例子,这种风格几乎肯定不合适。

\documentclass{article}
\usepackage{nicefrac}
\begin{document}
  Which of the following fractions is smaller than $\frac{1}{5}$?

  Which of the following fractions is smaller than \nicefrac{1}{5}?
\end{document}

文本中分数更优美

答案3

正如我在评论中所说,我认为你的序言中存在一些问题,因为对于内联数学,的默认行为\frac就是你想要的。为了证明这一点,请考虑以下示例:

\documentclass{article}
\usepackage{amsmath}% you need this!
\begin{document}
\textsf{frac}: Which of the following fractions is smaller than $\frac{1}{5}$ and
bigger than $\frac{3}{7}$?

\textsf{tfrac}:   Which of the following fractions is smaller than $\tfrac{1}{5}$ and
bigger than $\tfrac{3}{7}$?

\textsf{dfrac}: Which of the following fractions is smaller than $\dfrac{1}{5}$ and
bigger than $\dfrac{3}{7}$?

For displayed equations \verb|\frac| defaults to \verb|\dfrac|:
\[ \textsf{respectively, frac, tfrac and dfrac:}
         \frac{1}{5}, \tfrac{1}{5} \text{and } \dfrac{1}{5}.
\]
\end{document}

得出的结果为:

在此处输入图片描述

从图片中可以看出,分数位于文本的中心。也许你遗漏了\usepackage{amsmath}或者你正在加载另一个重新定义默认行为的包\frac。除非你给我们一个最小工作示例我们无法告诉您问题是什么。

相关内容