我只是在练习LaTeX
技能,这样我就不会忘记,所以我继续这站点并开始复制我发现的最复杂的东西。起初我以为这会是小菜一碟,但当我编写了这段代码后,我感到非常困惑。
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{fullpage}
\usepackage{commath}
\begin{document}
\[
\iiiint \limits_{\mathcal{Q}} f(w,x,y,z) \; \mathrm{d}w \; \mathrm{d}x \; \mathrm{d}y \; \mathrm{d}z \leq \oint_{\partial Q} f' \left( \max \left\{ \frac{\norm{w}}{|w^2 + x^2|} ; \frac{\norm{z}}{|y^2 + z^2|} ; \frac{\norm{w \oplus z}}{\norm{x \oplus y}} \right\} \right) \precapprox \biguplus_{\mathbb{Q} \Subset \bar{Q}} \left[ f^* \left( \frac{\lmoustache \mathbb{Q}(t)\rmoustache}{\sqrt{1 - t^2}} \right) \right]^{t=9}_{t=\alpha}
\]
\end{document}
乍一看一切似乎都很正常,但如果你仔细检查线的末端(带有 的部分Q(t)
),你会发现\lmoustache
和\rmoustache
被裁剪掉了,变形了。这是一张支持我的描述的图片。
我删除了所有不重要的软件包,以确保没有重新定义问题或软件包冲突。然后,我尝试通过使用缩放\lmoustache
和\rmoustache
缩小来检查这是否不是编码问题\scalebox
。结果是一样的,只是“尾巴”变小了。所以我很好奇如何解决这个问题并使我的编译与引用站点中包含的编译相同。
先感谢您。
答案1
您可以从另一个字体系列导入分隔符,我选择了stix
。
我还添加了一些改进,特别\diff
是对于差异和省略commath
。
\documentclass{article}
\usepackage{amsmath,mathtools}
\usepackage{amssymb}
\usepackage{fullpage}
%% moustaches from STIX
\let\lmoustache\relax \let\rmoustache\relax
\DeclareFontEncoding{LS2}{}{}
\DeclareFontSubstitution{LS2}{stix}{m}{n}
\DeclareSymbolFont{stixlargesymbols}{LS2}{stixex}{m}{n}
\SetSymbolFont{stixlargesymbols}{bold}{LS2}{stixex}{b}{n}
\DeclareMathDelimiter{\lmoustache}{\mathopen} {stixlargesymbols}{"E6}{stixlargesymbols}{"EC}
\DeclareMathDelimiter{\rmoustache}{\mathclose}{stixlargesymbols}{"E7}{stixlargesymbols}{"ED}
%% \abs and \norm
\DeclarePairedDelimiter{\abs}{\lvert}{\rvert}
\DeclarePairedDelimiter{\norm}{\lVert}{\rVert}
%% differential
\newcommand{\diff}{\mathop{}\!\mathrm{d}}
\begin{document}
\begin{equation*}
\begin{aligned}
\iiiint_{\mathcal{Q}} f(w,x,y,z) \diff w \diff x \diff y \diff z
&\leq
\oint_{\partial Q} f'
\left(
\max \left\{ \frac{\norm{w}}{\abs{w^2 + x^2}} ;
\frac{\norm{z}}{\abs{y^2 + z^2}} ;
\frac{\norm{w \oplus z}}{\norm{x \oplus y}} \right\}
\right)
\\
&\precapprox
\biguplus_{\mathbb{Q} \Subset \bar{Q}}
\left[ f^* \left(
\frac{\lmoustache \mathbb{Q}(t)\rmoustache}{\sqrt{1 - t^2}}
\right) \right]^{t=9}_{t=\alpha}
\end{aligned}
\end{equation*}
\begin{equation*}
\left\lmoustache\frac{a}{b}\right\rmoustache
\end{equation*}
\end{document}
关于不使用commath
,请参阅
https://tex.stackexchange.com/a/135985/4427
https://tex.stackexchange.com/a/123408/4427
https://tex.stackexchange.com/a/265987/4427
https://tex.stackexchange.com/a/325341/4427