tcolorbox의 박스형 제목을 상자 앞에 배치하는 방법은 무엇입니까?

tcolorbox의 박스형 제목을 상자 앞에 배치하는 방법은 무엇입니까?

의 박스형 제목을 전경으로 이동하는 방법 tcolorbox(상자 앞으로 이동)? 스크린샷(빨간색 직사각형, 강조 표시)에서 볼 수 있듯이 그리드가 제목과 겹치므로 이 동작은 원치 않습니다.

\documentclass[]{article}
\usepackage[most]{tcolorbox}
\NewTColorBox{solution}{+O{}}{%
  breakable, 
    enhanced,
    sharpish corners, 
    colframe=blue!50,
    colback=white,
    coltitle=blue!50,
    parbox = false,
    fonttitle=\bfseries,
    title={Solution},
    attach boxed title to top center ={yshift=-\tcboxedtitleheight/2,yshifttext=-\tcboxedtitleheight/2},
    halign title=flush center,
    boxed title style={%
    colback=white,
    },
  boxrule=0.5mm,top=0mm,bottom=0mm,
  underlay={%
      \draw[help lines,step=5mm,blue!20!white,shift={(interior.north west)}]
      (interior.south west) grid (interior.north east);
  },
  lowerbox=ignored,
  #1
  }

\begin{document}

\begin{solution}
Some text
\end{solution}

\end{document}

여기에 이미지 설명을 입력하세요

답변1

underlay boxed title상자형 제목이 추가되기 전에 격자선 이 그려 지면 underlay상자형 제목이 전경에 나타납니다(설명서의 200페이지도 참조 tcolorbox).

여기에 이미지 설명을 입력하세요

\documentclass[]{article}
\usepackage[most]{tcolorbox}
\NewTColorBox{solution}{+O{}}{%
  breakable, 
    enhanced,
    sharpish corners, 
    colframe=blue!50,
    colback=white,
    coltitle=blue!50,
    parbox = false,
    fonttitle=\bfseries,
    title={Solution},
    attach boxed title to top center ={yshift=-\tcboxedtitleheight/2,yshifttext=-\tcboxedtitleheight/2},
    halign title=flush center,
    boxed title style={%
    colback=white,
    },
  boxrule=0.5mm,top=0mm,bottom=0mm,
  underlay boxed title={%
      \draw[help lines,step=5mm,blue!20!white,shift={(interior.north west)}]
      (interior.south west) grid (interior.north east);
  },
  lowerbox=ignored,
  #1
  }

\begin{document}

\begin{solution}
Some text
\end{solution}

\end{document}

관련 정보