在文本中添加注释

在文本中添加注释

我正在尝试在文本中添加注释,如附图所示在此处输入图片描述 我尝试使用以下命令

\begin{quote}
\begin{minipage}{\linewidth}
\textbf{Note} Sometimes hypotheses term is used to refer to both algorithms and hypotheses.
\end{minipage}
\end{quote}

它可以工作,但我无法获得如图所示的精确度。我该如何解决这个问题?

答案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}

我不知道是否已经有一个可以生成您想要的引用样式的包。

相关内容