如何生成电话簿的可打印输出

发布于 2024-10-12 03:44:23 字数 314 浏览 5 评论 0原文

我正在开发一个桌面软件来管理人员和电话,并生成(导出)可以打印的电话列表(还包含城市摘要)(如 pdf)。电话管理部分已经准备好,是用java和swt/jface制作的。以打印友好的格式导出列表已成为一个问题。

我尝试用CSS导出HTML中的列表,但在不同的浏览器中结果不一样。 我正在考虑用 LaTeX 生成它,但创建样式变得太复杂(需要 A7 页面大小、较小的字体......)。

可以使用什么文件格式导出此列表?有没有一种简单的方法来生成可打印的东西?

编辑:忘记提及该文件将发送到一家公司进行打印。

谢谢!

I'm developing a desktop software to manage people and telephones, and also to generate (export) a list of telephones (also with a summary of the cities) that can be printed (like pdf). The part of telephones management is ready and was made with java and swt/jface. Exporting the list in a print friendly format is what has become an issue.

I tried exporting the list in HTML with CSS, but the result is not the same in different browsers.
I was thinking about generating it in LaTeX, but creating an style is getting too complicated (need an A7 page size, smaller fonts...).

What file format can be used to export this list? Is there an easy way to generate printable stuff?

Edit: forgot to mention that the file will be sent to a company to be printed.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

同尘 2024-10-19 03:44:23

生成pdf,无论使用什么浏览器,它看起来都是一样的。您可以使用 iText 创建 pdf,对于简单的 pdf 来说相当简单。

Generate a pdf, it will look the same no matter what browser they use. You can use iText to create the pdf, it is fairly straight forward for a simple pdf.

狼性发作 2024-10-19 03:44:23

您只需绘制图像即可,它在不同的系统上保持不变并且易于打印。通过绘制它,您可以按照您的想象设计它,而无需学习任何文档格式。绘制一个简单的表格应该很容易。

You could just draw an image, it will stay the same on different systems and its easy to print. by drawing it, you can style it like you imagine, without learning any document format. It should be easy to draw a simple table.

吝吻 2024-10-19 03:44:23

纯文本对我来说是一种非常友好的格式。不过,如果您将样式复杂性级别保持在最低限度,这可以通过 HTML 和 CSS 来完成。尝试阅读:

http://www .smashingmagazine.com/2010/06/07/the-principles-of-cross-browser-css-coding/

选择属性时要小心!

Plain text is a very friendly format for me. Altough, this could be done with HTML and CSS, if you keep the style complexity level to a minimum. Try reading:

http://www.smashingmagazine.com/2010/06/07/the-principles-of-cross-browser-css-coding/

And be careful when choosing your properties!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文