使用 tcolorbox 考慮文字的深度和高度

使用 tcolorbox 考慮文字的深度和高度

我想製作一個單字“塊”,並希望它們具有相同的垂直尺寸和對齊方式。

但是當我這樣做時:

\newtcbox{\tag}{nobeforeafter, box align=base,size=small}
\tag{Photo} \tag{may}

我得到:

在此輸入影像描述

因為盒子使用的是真實的文字高度。 CSS 中是否有某種「line-height」屬性可用於高度

答案1

您可以插入 \strut:

\documentclass[a4paper]{scrartcl}

\usepackage{tcolorbox}

\begin{document}

\newtcbox{\tag}{nobeforeafter, box align=base,size=small,before upper=\strut}
\tag{Photo} \tag{may}


\end{document}

在此輸入影像描述

相關內容