手写练习表-如何绘制描线和字母

手写练习表-如何绘制描线和字母

嗨,我想重新创建类似这样的工作表,用于练习写作。我非常不确定该怎么做。我想使用exam适合\fillwithlines{}命令的文档类。但是,我甚至不知道从哪里开始。例如,如何使字母变成点状,如何选择线条的宽度,如何选择字母的字体并按此处所示书写。

你能帮忙吗?

在此处输入图片描述

答案1

以下是迄今为止所获得的帮助。

我正在重新创建一张像上面那样的纸张 - 从 A 到 Z 的字母或任何数字,以便孩子们在学习写字时能够描摹它们。

我尝试合并链接中的代码,但发现非常困难,无法在线条顶部添加虚线字母。

我真的不明白如何修改建议的代码以获取此处的字母。

\documentclass[20pt]{exam}

\usepackage[a4paper, total={6in, 11in}]{geometry}

\usepackage{setspace}
\doublespacing

\usepackage{paracol}

\usepackage{xcolor}
\usepackage{tikz}
\definecolor{FullLinesColor}{RGB}{219,48,120} % color of the full lines  <<<<<<<<<<<
\definecolor{DottedLinesColor}{RGB}{50,120,220} % color of the dots <<<<<<<<<<<<
\newcommand{\Dotsep}{2pt}% dot separation <<<<<<
\newcommand{\Dotthickness}{0.3pt}% dot thickness <<<<<<
\newcommand{\LineThickness}{0.3pt}% full line thickness <<<<<<<<<<<<<<<
\newcommand{\LinesSepStretch}{1.5}% change the baseline stretch <<<<<

\newcommand{\nicelines}[1][12pt]{% \nicelines{<vertical block separation>}  
    \begin{spacing}{\LinesSepStretch}
    {\noindent\color{FullLinesColor}\rule{\linewidth}{\LineThickness}}
    {\color{DottedLinesColor}\linedotted{\linewidth}{\Dotthickness}}
    {\color{DottedLinesColor}\linedotted{\linewidth}{\Dotthickness}}
    {\vspace*{#1}\color{FullLinesColor}\rule{\linewidth}{\LineThickness}}
    \end{spacing}
}
\newcommand{\linedotted}[2]{\hbox to #1{\leaders\hbox to \Dotsep{\hss\bigpoint{#2}\hss}\hfill}} 
\newcommand{\bigpoint}[1]{\tikz\draw[DottedLinesColor,fill=DottedLinesColor] (0,0) circle (#1);}      
%******************************************************** 

\begin{document}

\subsection{The letter C}

\nicelines[24pt] 

\begin{paracol}{3}

\nicelines[24pt] 

Photo goes here. 

\switchcolumn

\nicelines[24pt] 

\nicelines[24pt] 

\nicelines[24pt] 

\switchcolumn

\nicelines[24pt] 

\nicelines[24pt] 

\nicelines[24pt] 

\end{paracol}

\end{document}

在此处输入图片描述

答案2

有一种免费的(非商业用途)字体叫做 KG Primary可在此处下载

使用 LuaLaTeX 或 XeLaTeX 进行编译。

在此处输入图片描述

\documentclass{article}
\usepackage{fontspec}

\setmainfont{KGPrimaryDotsLined}

\begin{document}

\Huge
The quick brown fox...

\end{document}

相关内容