大小命令在数学模式下不起作用

大小命令在数学模式下不起作用

梅威瑟:

\documentclass{article}
\begin{document}
$\wedge{\small\wedge}{\tiny\wedge}$
\end{document}

所有\wedges 都有相同的尺寸......

在此处输入图片描述

答案1

\small并且\tiny文本字体宏(就像\large\huge、...)。您很可能在文件中收到以下字体警告.log

LaTeX Font Warning: Command \small invalid in math mode on input line 3.

LaTeX Font Warning: Command \tiny invalid in math mode on input line 3.

在数学模式中,为了使用不同的(较小)字体,您可以/应该使用\scriptstyle\scriptscriptstyle

在此处输入图片描述

\documentclass{article}
\begin{document}
$\wedge{\small\wedge}{\tiny\wedge}$\par
$\wedge{\scriptstyle\wedge}{\scriptscriptstyle\wedge}$
\end{document}

\scriptstyle表示上标/下标的字体大小,而\scriptscriptstyle表示上标/下标的字体大小。此后(更高级别的脚本),字体大小仍为\scriptscriptsize。请参阅

在此处输入图片描述

\documentclass{article}
\begin{document}
$x\ x^x\ x^{x^x}\ x^{x^{x^x}}\ x^{x^{x^{x^x}}}$
\end{document}

这就是为什么建议使用\scalebox(并且可能使用一些高度调整\raisebox) - 它允许您在较小/较大尺寸的字体中拥有更多的变化。

答案2

使用


$\wedge$\small$\wedge$\tiny$\wedge$\normalsize

答案3

每当你想在数学模式下选择一个小尺寸的方程式时,我建议如下

\documentclass[11pt]{article}    
\usepackage{amsmath, amsthm, amssymb}    
\begin{document}    
\[ 3+3=\text{\footnotesize{\(x^2-13 =\)} \tiny{\( y^3-26 \)} } \]    
\end{document}

只要小心括号和间距!

相关内容