引号和警告建议中使用什么字体

引号和警告建议中使用什么字体

我想知道我应该在我的引用环境中使用什么字体,或者如何将它与大量文本区分开来。

我将在建议、警告(该做或不该做的事情、要注意什么……)中使用这个环境。

也会有一些实际的引言。但大多数都是警告。

我使用 sfserif 作为正文的字体。本文的主题是 GPG,也就是加密软件,我的目的是给出建议和评论,告诉你应该如何使用它或不应该使用它。

谢谢您的建议。

答案1

简单示例:

\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\usepackage[T1]{fontenc}
% manual p. 14
\newtcolorbox[auto counter]{advice}[1][Usage]{colback=blue!5!white, colframe=blue!75!black, fonttitle=\bfseries, title=Tip~\thetcbcounter: #1}
\newtcolorbox{warning}[1][]{colback=red!5!white, colframe=red!75!black, fonttitle=\bfseries, colbacktitle=red!85!black, enhanced, attach boxed title to top center={yshift=-2mm}, title=Warning! #1}
\usepackage{kantlipsum}
\begin{document}
  \begin{advice}
    Some advice about using the software.
  \end{advice}
  \begin{advice}[Encrypting]
    Don't forget the password!
  \end{advice}
  \begin{warning}
    Really important thing to do.
  \end{warning}
  \begin{warning}[Read this!]
    Another really crucial thing.
  \end{warning}
  \begin{quotation}
    \kant[1]
  \end{quotation}
  \begin{quote}
    \kant[2]
  \end{quote}
\end{document}

简单的例子

相关内容