乳膠投影機中的極簡塊

乳膠投影機中的極簡塊

我想創建一個如下所示的區塊:在此輸入影像描述

我無法找到相同的乳膠模板。有任何想法嗎?

答案1

tcolorbox套餐是最好的選擇。盒子非常簡約,可以輕鬆地用 Ti 完成kZ。

\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}

在此輸入影像描述

相關內容