首先,我的英语不太好,所以如果有任何错误,请告诉我。
我想在 latex 中创建一个新环境来制作这个框架 但当框架中的文本太长时,会出现一些问题
你能帮我解决我的问题吗?这是我的代码
\newcounter{vd}
\setcounter{vd}{0}
\newenvironment{vd}[1][]{
\def\ghichu{\textit{\color{blue}#1.}}
\addtocounter{vd}{1}
\noindent
\begin{tikzpicture}
\node[inner sep=10pt,fill=green!20] (vd)
\bgroup
\begin{minipage}{0.96\textwidth}
\textbf{\color{red}Ví dụ \thevd:}
}{
\flushright\ghichu
\end{minipage}
\egroup;
\draw[blue,line width=5pt] (vd.north west)--(vd.south west);
\end{tikzpicture}
}
任何帮助表示感谢
答案1
我建议使用可破坏的东西tcolorbox
而不是TiKZ
环境。
\documentclass{article}
\usepackage[most]{tcolorbox}
\usepackage{lmodern}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\newtcolorbox[auto counter]{vd}[1][]{
enhanced,
breakable,
sharp corners,
colback=green!20,
colframe=blue,
boxrule=0pt,
leftrule=2pt,
detach title,
coltitle=red,
fonttitle=\bfseries,
title={Vi du~\thetcbcounter},
before upper={\tcbtitle\quad}
#1
}
\begin{document}
\begin{vd}
\lipsum[1]
\end{vd}
\begin{vd}
\lipsum[1-5]
\end{vd}
\end{document}