使用 LaTeX 的分數模式

使用 LaTeX 的分數模式

我正在嘗試將我的課堂課程自動化以產生“標準答案”。我的問題與分數模式有關。讓我們來看答案: 0.33333333...,我希望它看起來像1/3

答案1

歡迎! pgf 具有檢測此類分數的方法/pgf/number format/frac

\documentclass{article}
\usepackage{pgf}
\usepgflibrary{fpu}
\begin{document}
\pgfkeys{/pgf/number format/frac}%
\pgfmathprintnumber{0.33333333}
\end{document}

在此輸入影像描述

相關內容