突出显示段落作为自己的观点

突出显示段落作为自己的观点

有人能建议如何将文本的某些部分标记为“自己的观点”吗?

我正在写一份报告,团队将以此为基础决定下一步行动。因此,我正在审查几种方法,并希望以某种方式在报告中包括一些“元”想法/批评。但读者应该很容易发现它们是我自己的主观意见/建议,与方法的客观评论不同。

我考虑在页边空白处加一条垂直线,横跨一个或多个段落,并写上一些文字,例如“要记住的事情”。但我愿意听取任何建议。

答案1

通常,少即是多。比较一下简单的实现和更复杂的实现。除了展示对专业包的了解之外,没有什么收获。

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{libertine}

\usepackage{tcolorbox}
\tcbuselibrary{breakable, skins}
\tcbset{breakable, enhanced jigsaw}% + other stylings...
\usepackage{lipsum, kantlipsum}
\newcommand{\comm}[1]{%
  \begin{tcolorbox}#1\end{tcolorbox}}

\newcommand{\xcomm}[1]{%
  \begin{quote}
    \footnotesize\sffamily \textsc{\textbf{commentary}}.\quad #1
  \end{quote}}

\newcommand{\xproem}[1]{%
  \begin{quote}
    \footnotesize\sffamily \textsc{\textbf{note}}.\quad #1
  \end{quote}}

\begin{document}


\xproem{Text set in this style represents my reflections on this project}

\lipsum[1]

\xcomm{\kant[1]}

\lipsum[2]

\xcomm{\kant[2]}

\lipsum[3]

\xcomm{\kant[3]}

\lipsum[4]

\xcomm{\kant[4]}

\lipsum[5]

\xcomm{\kant[5]}


% Or this -- but what does the colours and boxing add?
\newpage
\begin{tcolorbox}
\textbf{Note:} All text with this background represents a my own comments.
\end{tcolorbox}

\lipsum[1]

\comm{\kant[1]}

\lipsum[2]

\comm{\kant[2]}

\lipsum[3]

\comm{\kant[3]}

\lipsum[4]

\comm{\kant[4]}

\lipsum[5]

\comm{\kant[5]}

\end{document}

相关内容