tcolorbox를 사용하여 텍스트의 깊이와 높이 고려 2024-6-15 • tcolorbox height 나는 단어의 "블록"을 만들고 싶습니다. 그리고 동일한 수직 크기와 정렬을 갖고 싶습니다. 하지만 내가 할 때 : \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} 관련 정보