使用网格填充主要内容框

使用网格填充主要内容框

我在网上找到了这个模板(http://www.latextemplates.com/template/engineering-calculation-paper) 这几乎就是我想要的,但我不希望背景是蓝色,而是希望背景是网格状 - 就像数学抄写本一样。有人能帮忙吗?

我尝试查找并找到了一些可以创建文本框的项目(\begin{tikzpicture}...),但我希望我的主要内容页面包含方块,并尽可能从一开始就指定。提前感谢您。

答案1

第44行和第45行是左右主框的定义,其中包含蓝色背景的定义。

将蓝色改为白色就可以了

 \put(10, 10){\fcolorbox{black}{blue!10}{\framebox(155,247){}}} % Main content box
 \put(165, 10){\fcolorbox{black}{white!10}{\framebox(37,247){}}} % Margin box

 \put(10, 10){\fcolorbox{black}{white!10}{\framebox(155,247){}}} % Main content box
 \put(165, 10){\fcolorbox{black}{white!10}{\framebox(37,247){}}} % Margin box

尽管我必须承认,那些双倍\fcolorbox组合\framebox很奇怪。

相关内容