我正在写一个多维积分如下:
有什么方法可以让 $\int d^{D}x$ 部分看起来更美观吗?最好是将 x 移向 $\int d^{D}$ 部分
我正在使用带有包的math-fontGaramond-Math
和 regular-font并使用进行编译。EB Garamond
unicode-math
XeLaTeX
编辑:我的 LaTeX 代码:
% !TEX program = xelatex
\documentclass[12pt]{article}
\usepackage[fleqn]{amsmath}
\usepackage{amssymb}
\usepackage{bm} %for boldface math
\usepackage{braket}
\usepackage[colorlinks,citecolor=red,urlcolor=blue,bookmarks=false,hypertexnames=true]{hyperref}
\usepackage[a4paper, scale=0.9]{geometry}
\usepackage{tcolorbox}
\usepackage[math-style=TeX, bold-style=TeX]{unicode-math}
\setmainfont{EB Garamond}
\setmathfont{Garamond-Math.otf}[StylisticSet={6,10}]
\begin{document}
\[
\int d^{D}x \left( - \frac{1}{2} \partial _{\mu} \phi \partial ^{\mu} \phi - \frac{1}{2} m^{2} \phi^{2} \right)
\]
\end{document}
答案1
像这样吗?
请注意使用\tfrac
代替\frac
,\bigl
以及\bigr
代替 和\left
,\right
各种正负空白调整,以及@Schrödinger'scat 建议使用直立字形排版微分算子d
。(另外,如果您不熟悉\mkern
:(\,
“正薄空间”)对应于\mkern3mu
,而\!
(“负薄空间”)对应于\mkern-3mu
; 1em=18mu
。
\documentclass[12pt]{article}
\usepackage{amsmath,unicode-math}
\newcommand{\diff}{\mathop{}\!\mathrm{d}}
\setmainfont{EB Garamond}
\setmathfont{Garamond-Math}[StylisticSet={6,10}]
\setlength\textwidth{3in} % just for this exercise
\begin{document}
Original form:
\[
\int d^{D}x \left( - \frac{1}{2} \partial _{\mu} \phi \partial ^{\mu} \phi
- \frac{1}{2} m^{2} \phi^{2} \right)
\]
Suggested alternative:
\[
\int \mkern-5mu \diff^{D}\!x \,\bigl(-\tfrac{1}{2} \partial_{\mkern-2mu\mu} \phi\,
\partial^{\mkern1mu\mu}\!\phi -\tfrac{1}{2} m^2\mkern-1.5mu\phi^2\bigr)
\]
\end{document}