表格行在列和注释行之间交替
我想更改我的业余无线电日志,以便每隔一行都是一个全长注释行,可能在全长行的背景中有浅灰色的“注释”字样。
+-------+-------+-------+
|header1|header2|header3|
+-------+-------+-------+
| | | |
+-------+-------+-------+
| notes |
+-------+-------+-------+
| | | |
+-------+-------+-------+
| notes |
+-----------------------+
...
这是到目前为止的代码: http://pastebin.com/BgHGkhq8
编辑 1:澄清一下:现在我用它来简单地打印出需要手工填写的空表格;后来我正在考虑将其集成到我的(非常粗糙,即预阿尔法)基于sqlite的纯文本(即控制台 - 想想nanonote和业余无线电日志记录:)日志“应用程序”(只是一堆脚本,真的)。
I would like to alter my ham-radio logbook so that every other row is a full-length notes row, possibly having the words "notes" in light grey in the background of the full-length row.
+-------+-------+-------+
|header1|header2|header3|
+-------+-------+-------+
| | | |
+-------+-------+-------+
| notes |
+-------+-------+-------+
| | | |
+-------+-------+-------+
| notes |
+-----------------------+
...
Here's the code so far: http://pastebin.com/BgHGkhq8
edit 1: For clarification: For now I use this to simply print out empty forms to be filled out by hand; later on I am thinking about integrating this into my (very rough, ie. pre alpha) sqlite based, text-only (ie. console - think nanonote and ham radio logging :) logbook "application" (just a bunch of scripts, really).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后,这就是我根据 tex 专家提出的非常好的答案得出的结果 - 以防万一其他人需要这个;)
In the end, this is what I made out of the very nice answers the tex gurus came up with - just in case anyone else ever needs this ;)