精美手写 Post it 文档

精美手写 Post it 文档

最近,一位教授要求我匿名收集所有同学对他的教学方式的评论,以便改进或保留某些方面。我想把每条评论都写在一个可以旋转的便签框中,用手写字体。

这意味着每个便利贴盒的方向和手写字体类型都不同。我发现了一些非常好看的手写字体样式。这里。目前为止我只能使用mdframed,但结果并不像我想象的那么好。

我的代码是

\documentclass{article}

\usepackage{tikz}
\usetikzlibrary{%
    calc,%
    fadings,%
    shadings%
}
\usetikzlibrary{arrows,snakes,shapes}
\usetikzlibrary{backgrounds}

\newcommand{\Cloud}[2][180]% [angle], content
{   \begin{tikzpicture}[overlay]
        \node[align=center, draw, shading=ball, text=white, cloud callout, cloud puffs=17, cloud puff arc=140, callout pointer segments=3, anchor=pointer, callout relative pointer={(#1:2 cm )}, aspect=4,scale=0.5] at (-3ex,0.5ex) {#2};
\end{tikzpicture}
}

\usepackage{mdframed}
\mdfdefinestyle{MyFrameBlue}{%
    linecolor=red,
    outerlinewidth=0.5pt,
    roundcorner=5pt,
    innertopmargin=\baselineskip,
    innerbottommargin=\baselineskip,
    innerrightmargin=20pt,
    innerleftmargin=20pt,
    backgroundcolor=blue!20!white}

    \begin{document}
        \begin{mdframed}[style=MyFrameBlue]
        What a great lesson with a lot of fun features!!!
        \end{mdframed}
            \Cloud[30]{Have a great Summer}
    \end{document}

我的输出看起来像这样(它是希腊语,抱歉!)

在此处输入图片描述

有什么想法可以让它像希腊语手写字体一样贴在便签上吗?

答案1

关于字体:

  • 希马拉涵盖拉丁语、希腊语和西里尔语,可免费供个人使用。
  • 如果您运行的是 Windows Vista 或更高版本,Segoe Script 涵盖希腊语。
  • 佩西塔涵盖多种语言,并根据开放字体许可证发布。
  • VAG-手写涵盖拉丁语和希腊语,并根据 GPL 发布。

要在您的文档中使用这些字体,您必须使用 XeTeX 或 LuaTeX 进行编译。在您的操作系统中安装字体,就像在任何其他程序中使用字体一样,然后使用软件包加载fontspec

\usepackage{fontspec}
\newfontfamily\vaghandwritten{VAG-Handwritten}

这定义了命令\vaghandwritten,您可以使用它来切换到当前组其余部分的字体。您可以查看fontspec文档以获取更多选项。

\marginpar用于排版注释的示例文档可能如下所示:

\documentclass{article}
\usepackage{fontspec}
\newfontfamily\vaghandwritten{VAG-Handwritten}

\begin{document}
This is some document text.\marginpar{\vaghandwritten This is a note, typeset in the handwritten font.}
\end{document}

相关内容