答案1
借助该bigints
包 (参见大积分符号) 和一些负空间,使用 Steven 的代码作为起点。
\documentclass{article}
\usepackage{bigints}
\begin{document}
\[
\mathit{Life} = \hspace{-0.8em} \bigint_{\mathit{birth}}^{\mathit{death}}\hspace{-2.5em}\frac{\mathit{happiness}}{\mathit{time}} \Delta \mathit{time}
\]
\end{document}
答案2
使用bigints
是一个好的开始。然后需要在等号周围和分数之前使用负字距调整。
\documentclass{article}
\usepackage[osf]{Baskervaldx} % tosf in text, tlf in math
\usepackage[baskervaldx,vvarbb]{newtxmath}
\usepackage{bigints}
\begin{document}
\begin{displaymath}
\textit{Life} \mkern-2mu = \mkern-18mu
\bigints_{\textit{birth}}^{\textit{death}} \mkern-42mu
\frac{\textit{happiness}}{\textit{time}} \,\Delta \textit{time}
\end{displaymath}
\end{document}
答案3
这是一个开始。
\documentclass{article}
\begin{document}
\[
\mathit{Life} = \int_\mathit{birth}^\mathit{death}\frac{\mathit{happiness}}{\mathit{time}} \Delta \mathit{time}
\]
\end{document}
更加精致:
\documentclass{article}
\usepackage{scalerel,mathtools}
\begin{document}
\[
\mathit{Life} {\,=} \!\!\!\!\vcenter{\hbox{%
$\displaystyle{\scaleto[2em]{\int}{60pt}}_{%
\mkern-27mu\mathit{birth}}^{\mathit{death}}$}}\mkern-44mu%
\frac{\mathit{happiness}}{\mathit{time}}\,\Delta\,\mathit{time}
\]
\end{document}
答案4
这是一个使用该mtpro2
包及其\XXL\int
构造的解决方案。
% !TeX program = pdflatex
\documentclass{article}
\usepackage{mathtools,newtxtext}
\usepackage[lite]{mtpro2}
\begin{document}
\[
\textit{\Large Life}=\XXL\int_{\mathrlap{\textit{birth}}}^{\mathrlap{\textit{death}}}
\mkern-15mu\frac{\textit{happiness}}{\textit{time}}\Delta\textit{time}
\]
\end{document}