tcolorbox 框寬度

tcolorbox 框寬度

在這個問題中,測量從文字到下邊距的距離,答案是tcolorbox提供一個填滿頁面剩餘長度的方塊。然而,當框因環境而縮減時itemize,框的寬度不會減少且框的寬度超過右紙張邊距。我怎樣才能達到正確的寬度tcolorbox

\documentclass[]{article}

\usepackage[showframe]{geometry}
\usepackage[utf8]{inputenc}

\usepackage[most]{tcolorbox}
\tcbuselibrary{breakable}
\newtcbox{example}[1][]{%
  enhanced jigsaw,
  colback=white, 
  colframe=black,
  boxrule=1pt,
  sharpish corners,
  arc=0mm,
  boxsep=0mm,
  left=\dimexpr\textwidth-2pt\relax,   %% 2pt= 2* boxrule width (1pt)
  right=0mm,
  % width fill,
  height fill,   %% <---- this fills the remaining space
  #1,
}

\begin{document} 
Itemized list
\begin{itemize}
    \item Itemized \example{\null}
\end{itemize}
\end{document} 

答案1

 left=\dimexpr\linewidth-2pt\relax,   %% 2pt= 2* boxrule width (1pt)

不是\textwidth

相關內容