梅威瑟:
\documentclass{article}
\begin{document}
$\wedge{\small\wedge}{\tiny\wedge}$
\end{document}
所有\wedge
s 都有相同的尺寸......
答案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}
只要小心括号和间距!