我在公式大小方面遇到问题。我使用
\small{some formula}
和
\begin{small} some formula \end{small}
但是,它们都不起作用。
答案1
这很好用。
\documentclass{article}
\begin{document}
\[ f = \frac{orm}{ula} \]
{\small\[ f = \frac{orm}{ula} \]}
{\tiny\[ f = \frac{orm}{ula} \]}
\end{document}
如果您想要比例缩放,则需要使用 手动进行\scalebox
。
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\[ f = \frac{orm}{ula} \]
\[ \scalebox{.5}{$\displaystyle f = \frac{orm}{ula}$} \]
\end{document}
答案2
您还可以使用包中的命令之一nccmath
,包是的扩展 amsmath
,它定义了medium sized
命令和环境(约占 的 80% \displaystyle
):\medmath, \medop, \medint,\mfrac, \mbinom
以及medsize
和mmatrix
环境。比较:
\documentclass[12pt]{article}
\usepackage [fleqn]{amsmath}%
\usepackage{nccmath}
\DeclareMathOperator{\ath}{argth}
\newcommand{\dint}{\displaystyle\int}
\newcommand{\mint}{\medint\int}
\renewcommand{\d}{{\rm d}\,}
%
\begin{document}
\begin{align*}
& \texttt{\textbackslash displaystyle:} & & \int\frac{\mathrm d\mkern1mu x}{1-x²} =\ath x = \frac12\ln\Bigl(\frac{1 + x}{1-x}\Bigr) \\
& \texttt{\phantom{\textbackslash}medsize:} & & \medmath{\int\frac{\mathrm d\mkern1mu x}{1-x²} =\ath x = \frac12\ln\Bigl(\frac{1 + x}{1-x}\Bigr)} \\%
& \texttt{\textbackslash textstyle: }
& & \textstyle \int\frac{\mathrm d\mkern1mu x}{1-x²} =\ath x = \frac12\ln\bigl(\frac{1 + x}{1-x}\bigr)
\end{align*}%
\end{document}