如何引用电子邮件通信的启发

如何引用电子邮件通信的启发

我正在寻找一种排版电子邮件通信的好方法(可能包括多层引用)。在电子邮件程序中,这可能看起来像这样:

在此处输入图片描述

在此处输入图片描述

或者这个

在此处输入图片描述

我并不是在寻找如何复制它们,而是在寻找一种在印刷信件中专业且美观,甚至看起来很花哨的方式来做到这一点。

因此,如果您以前遇到过这个问题并且有一个很好的解决方案,那么如果您能在这里分享就太好了。

这个问题似乎是一个社区维基问题(但这个功能似乎不再存在)。

答案1

第二个例子(或者至少是类似的例子)对于嵌套的tcolorboxes

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[most]{tcolorbox}
\usepackage{inconsolata}

\tcbset{
    every box/.style={notitle, fontupper=\ttfamily, 
            sharp corners, boxrule=0pt, leftrule=.5mm, rightrule=.5mm},
    every box on layer 1/.style={every box, colback=white},
    every box on layer 2/.style={every box, colback=blue!10, colupper=blue!70!black, colframe=blue!70!black},
    every box on layer 3/.style={every box, colback=red!10, colupper=red!70!black, colframe=red!70!black},
    every box on layer 4/.style={every box, colback=green!10, colupper=green!70!black, colframe=green!70!black},    
        }

\begin{document}
\begin{tcolorbox}
Welcome to the Quote Colors site!
\begin{tcolorbox}
You can choose between three quoting modes as shown here.
\begin{tcolorbox}
So what's this?
\begin{tcolorbox}
Just a stupid example to demonstrate the options in Quote Colors\dots
\end{tcolorbox}
\end{tcolorbox}
\end{tcolorbox}
Have fun!
\end{tcolorbox}
\end{document}

在此处输入图片描述

相关内容