以绝对方式定位 tcolorbox

以绝对方式定位 tcolorbox

我想tcolorbox以绝对方式定位,就像在 tikz 选项中一样remember picture, overlay,例如“请将框的中心放在页面的中心”。实现此目的的最简单方法是什么?

谢谢 !

梅威瑟:

\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\begin{document}
\begin{tcolorbox}[width=4cm]%%
  Hi everyone
\end{tcolorbox}
\end{document}

答案1

您可以将其包装到 tikz 节点中。

\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\begin{document}
\tikz[overlay, remember picture] \node at (current page.center) {
\begin{tcolorbox}[width=4cm]%%
  Hi everyone
\end{tcolorbox}
};
\end{document}

相关内容