动机:我正在开始学习一些工程课程,我们需要在工程计算板上解决问题。我发现我花在家庭作业上的大部分时间都是用我的整洁的笔迹,老实说,还是很乱。
简而言之,我想创建一个 LaTeX 文档模板,可以用来填写问题。
我认为对这个问题的一个好的回答将为其他工程专业的学生提供非常有用的参考,这也是我在 Tex SE 上提问的部分动机。
在过去一两周的时间里,我自己尝试过这个模板几次,但是就是没有足够的 LaTeX 能力来对这个问题所需的默认文档样式进行大的修改。
描述:下面的图片中有几个我试图复制的特征,每个特征都有不同的相关性。
特征:这就是我一直试图从上面的图片中得到的东西。
我正在尝试获取带有标题的此特定边距边框。有
crop
包,或包上的绘制选项geometry
,但都不是这个边框。将标题信息放入框中。
(不太重要)在背景中放置光栅。
将文本与网格对齐。
插入两列。一列用于左侧的子部分标题,一列用于右侧的对齐答案文本。
问题:
功能 1 和 2 对我来说是最重要的,但我最不知道如何实现这两个功能。
期望 LaTex 具有这种程度的微调是否合理,或者我是否要求它做一些它没有设计要做的事情?
结论:有人愿意帮助我入门吗?我可以进一步修改模板的框架吗?有做类似事情的资源或包吗?
谢谢你,
迈克尔
更新 1:这问题询问如何制作一个看起来像大学横格笔记本纸的模板。它似乎具有我正在寻找的一些功能。
更新 2:在花了更多时间研究上面的链接后,我找到了一个解决方案,我对此非常满意。我放弃了第 4 点,但其他一切似乎都恰到好处。我可能会再多玩一下标题中的字体,只是它看起来有点不对劲。此外,我想以参考方式设置问题编号,而不是硬编码。
\documentclass[10pt]{article}
\usepackage{tikz, background, titling, setspace}
\usepackage[left=1in, right=0.50in, top=0.75in, bottom=1.5in]{geometry}
\usepackage{tabu}
\usetikzlibrary{calc}
\backgroundsetup{%
position=current page.center,
angle=0,
scale=1,
contents={%
\begin{tikzpicture}%
[
normal lines/.style={blue, thin},
grid lines/.style={gray!10, very thin},
every node/.append style={black, align=center, opacity=1}
]
\foreach \y in {0.1, 0.25,...,10.5} { \draw[grid lines] (1in,\y in) -- (8in,\y in); }
\foreach \x in {1, 1.15,...,8} { \draw[grid lines] (\x in,0in) -- (\x in,10.5 in); }
\draw[normal lines] (1in,0) -- (1in,11in);
\draw[normal lines] (8in,0) -- (8in,11in);
\draw[normal lines] (0in,10.5in) -- (8.5in,10.5in);
\draw[normal lines] (3.125in,11in) -- (3.125in,10.5in);
\draw[normal lines] (5.375in,11in) -- (5.375in,10.5in);
\node (t) [font=\LARGE, anchor=center] at (4.25in, 10.725in) {\today};
\node (t) [font=\LARGE, anchor=center] at (2.00in, 10.725in) {4--99};
\node (t) [font=\LARGE, anchor=center] at (6.63in, 10.725in) {\theauthor};
\end{tikzpicture}%
}}
\title{My doc}
\author{M. Molter}
\begin{document}
\pagestyle{empty}
\begin{tabular}{l p{5.5in}}
\textbf{Given:} \vspace{.125in} &
This is what the given section should look like. Here I include details related to what the textbook has given me for the problem. \\
\textbf{Asked:} \vspace{.125in} &
Here is where I give details regarding what the question has asked me. \\
\textbf{Sketch:} \vspace{.125in} &
Here is where you should include a sketch of the problem. \\
\textbf{Equations:} \vspace{.125in} &
Here is where the relevant equations should go. \\
\textbf{Solution:} \vspace{.125in} &
Here is where the solution should go.
\end{tabular}
\end{document}