LaTeX ページを数式罫線付きのノート/パッドページのように見せるためのクラスまたはテンプレートはありますか? ありがとうございます。
答え1
TikZ
パッケージを使用してこれを実行できますbackground
(正しく動作させるには 2 回の実行が必要です)。
\documentclass{scrartcl}
\usepackage[margin=25mm]{geometry}
\usepackage{tikz}
\usepackage{lipsum}
\usepackage{background}
\SetBgContents%
{ \begin{tikzpicture}[remember picture, overlay]
\draw [line width=0.3pt,color=gray,step=0.5cm] (current page.south west) grid (current page.north east);
\end{tikzpicture}
}
\SetBgScale{1}
\SetBgAngle{0}
\begin{document}
\lipsum[1-14]
\end{document}