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

相关内容