答案1
tcolorbox
包装是最好的选择。盒子非常简约,可以轻松用 Ti钾Z。
\documentclass[10pt,a4paper]{article}
\usepackage{tikz}
\newcommand{\minimalisticBox}[2]{
\begin{figure}
\centering
\begin{tikzpicture}
\node[rounded corners,draw,line width=1.5pt,inner sep=5ex](MBoxForm){#2};
\node[anchor=west,fill=white] at (MBoxForm.155) {#1};
\end{tikzpicture}
\end{figure}
}%\minimalisticBox{title}{contents}
\begin{document}
\minimalisticBox{Scattering probability}{$f_{ij}=\frac{\alpha_S^2(Q^2)}{2}\log^2[\frac{r_{14}r_{23}}{r_{24}r_{13}}]$}
\end{document}
答案2
tcolorbox中的一个解决方案:
\begin{tcolorbox}[enhanced,attach boxed title to top center={yshift=-3mm,yshifttext=-1mm},
colback=white!100!black,colframe=black,colbacktitle=white,coltitle=black,title=My title,fonttitle=\bfseries,boxed title style={size=small,colframe=white} ]This box uses a \textit{boxed title}. The box of the title can be formatted independently from the main box.\end{tcolorbox}
因此对于有问题的盒子:
\documentclass[10pt,a4paper]{article}
\usepackage[most]{tcolorbox}
\begin{document}
\begin{tcolorbox}[enhanced,attach boxed title to top left={xshift=5mm,yshift=-3mm,yshifttext=-1mm}, colback=white,colframe=black,colbacktitle=white,coltitle=black,title={\LARGE Scattering probability},halign=flush center,fonttitle=\bfseries, boxed title style={size=small,colframe=white}]
$f_{ij}=\frac{\alpha_S^2(Q^2)}{2}\log^2[\frac{r_{14}r_{23}}{r_{24}r_{13}}]$
\end{tcolorbox}
\end{document}