答案1
你可能想要使用这个framed
包。我修改了这并得到与你想要的类似的东西,如下所示:
\documentclass{article}
\usepackage[dvipsnames]{xcolor} %frame color
\usepackage{framed} % for defining framed environment
\newenvironment{formal}{
\def\FrameCommand{{\color{YellowOrange}\vrule width 2pt}\hspace{2pt}}
\MakeFramed{\advance\hsize-\width}
\vspace{2pt}\noindent\hspace{-7pt}\vspace{3pt}
}{\vspace{3pt}\endMakeFramed}
\begin{document}
\begin{formal}
{\bf Note}
Sometimes hypotheses term is used to refer to both algorithms and
hypotheses.
\end{formal}
\end{document}
我不知道是否已经有一个可以生成您想要的引用样式的包。