如何插入像方格记事本纸一样的 2 英寸空线

如何插入像方格记事本纸一样的 2 英寸空线

请帮帮我。如何插入像方格记事本纸一样的 2 英寸空线,看起来像那张图片在此处输入图片描述

答案1

您可以使用该tikz包来执行此操作。

\documentclass{article}

\usepackage{paralist} % solely for styling the enumerate list
\usepackage{tikz}     % for drawing the grid

\begin{document}

\begin{enumerate}[(a)]

\item some text

\item some more text

% draw the grid. Using 3.0001in instead of 3.0 ensures the last
% vertical line gets drawn. 
\tikz{\draw[step=.1in,gray,thin] (0,0) grid (3.0001in,1.0001in);}

\end{enumerate}

\end{document}

在此处输入图片描述

相关内容