单面打印机打印小册子_如何在Microsoft Word中创建可打印的小册子

单面打印机打印小册子

单面打印机打印小册子

There are times where you’ll need to create a small booklet of literature for a company or organization, and thankfully Microsoft Word 2010 or 2013 makes the process easy. Here’s the quick guide on how to do it.

有时候,您需要为公司或组织创建一本小型的文献手册,而且值得庆幸的是,Microsoft Word 2010或2013使此过程变得容易。 这是有关操作方法的快速指南。

Note: These screenshots are from Word 2010 but it’s the exact same process in 2013.

注意:这些屏幕截图来自Word 2010,但与2013年的过程完全相同。

创建小册子 (Create Booklets)

Open Word and select the Page Layout tab, then click on the icon in the corner of Page Setup to launch the Page Setup dialog. It’s probably best to do this before creating your document, then you’ll get a better idea of how the layout will look. However, you can make your document first then create the Booklet layout, and edit it from there.

打开Word并选择“页面布局”选项卡,然后单击“页面设置”一角的图标以启动“页面设置”对话框。 最好在创建文档之前执行此操作,然后您将更好地了解布局的外观。 但是,您可以先制作文档,然后创建小册子布局,然后从那里进行编辑。

sshot-2010-10-21-[21-25-27]

In the Page Setup screen under Pages, change multiple pages to Book fold from the dropdown.

在页面下的页面设置屏幕中,将多个页面从下拉菜单更改为折页。

sshot-2010-10-21-[21-31-09]

You might also want to change the Gutter setting under Margins from 0 to 1. Otherwise, there is a chance words will get jumbled in the binding or crease of your booklet. Also, after selecting Book Fold Word automatically changes to Landscape Orientation.

您可能还希望将“边距”下的“装订线”设置从0更改为1。否则,有可能单词在装订或折页时变得混乱。 此外,选择“折书”后,Word会自动更改为“横向”。

sshot-2010-10-21-[21-47-57]

Click OK after you’ve made your adjustments, and you’ll be able to get an idea of what your booklet will look like.

进行调整后,单击“确定”,您将可以大致了解小册子的外观。

sshot-2010-10-21-[21-38-38]

Of course you will have the power of Word’s editing features so you can make you booklet as simple or complex as you want. Here we are just making a simple test booklet, added a header, and page numbers for the footer.

当然,您将拥有Word的编辑功能,因此您可以根据需要使小册子变得简单或复杂。 在这里,我们只是制作一个简单的测试手册,添加页眉和页脚的页码

sshot-2010-10-21-[21-39-40]

After you have the Booklet setup in word, you can navigate to each page, and make any edits or changes you need.

有了Booklet设置后,就可以导航到每个页面,并进行所需的任何编辑或更改。

sshot-2010-10-21-[21-43-15]

打印小册子 (Print Booklets)

Depending on the type of printer you have, hopefully you can print both sides of the document. Or, if it supports manual duplex printing, you can select that option as well. Where in our case it looks like it might be time for a printer upgrade?

根据所用打印机的类型,希望可以同时打印文档的两面。 或者,如果它支持手动双面打印,则也可以选择该选项。 在我们的情况下,似乎应该升级打印机了?

sshot-2010-10-21-[22-34-11]

You can also create booklets in Office 2003 & 2007, but of course the options and layouts are different.

您也可以在Office 2003和2007中创建小册子,但是当然选项和布局是不同的。

翻译自: https://www.howtogeek.com/howto/32759/how-to-create-booklets-in-word/

单面打印机打印小册子

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
1. 首先需要下载并安装libharu库,可以在官网 http://libharu.org/ 下载最新版本。 2. 创建一个新的C语言项目,并将libharu库的头文件和库文件添加到项目。 3. 在代码引入libharu库的头文件: ``` #include <stdio.h> #include <stdlib.h> #include <string.h> #include <setjmp.h> #include "hpdf.h" ``` 4. 创建一个PDF文档对象: ``` HPDF_Doc pdf = HPDF_New(NULL, NULL); //创建一个新的PDF文档对象 if (!pdf) { printf("error: cannot create PdfDoc object\n"); return 1; } ``` 5. 设置打印机和纸张大小: ``` HPDF_Page_SetSize(page, HPDF_PAGE_SIZE_A4, HPDF_PAGE_PORTRAIT); //设置纸张大小和方向 HPDF_Page_SetPrintDirect(page, HPDF_TRUE); //设置直接打印模式 HPDF_Page_SetPrintFix(page, HPDF_TRUE); //设置固定打印模式 HPDF_Page_SetPrintPageRange(page, 1, 1); //设置打印页码范围 HPDF_Page_SetPrintCopies(page, 1); //设置打印份数 HPDF_Page_SetPrintDuplex(page, HPDF_PRINT_DUPLEX_SIMPLEX); //设置单面打印 HPDF_Page_SetPrintScaling(page, HPDF_PRINT_SCALING_NONE); //设置不进行缩放 ``` 其,HPDF_PAGE_SIZE_A4表示纸张大小为A4,HPDF_PAGE_PORTRAIT表示纸张方向为纵向。 6. 将PDF文档保存为文件并打印: ``` HPDF_SaveToFile(pdf, "test.pdf"); //将PDF文档保存为文件 HPDF_PrintWithDialog(pdf); //打印PDF文档 ``` 完整代码示例: ``` #include <stdio.h> #include <stdlib.h> #include <string.h> #include <setjmp.h> #include "hpdf.h" int main(int argc, char **argv) { HPDF_Doc pdf; HPDF_Page page; HPDF_Font font; HPDF_REAL tw; HPDF_REAL width; HPDF_REAL height; HPDF_REAL x; HPDF_REAL y; char fname[256]; jmp_buf env; HPDF_STATUS ret; printf("start\n"); /* create default-font */ font = HPDF_GetFont (pdf, "Helvetica", NULL); /* create pdf-object */ pdf = HPDF_New(NULL, NULL); if (!pdf) { printf("error: cannot create PdfDoc object\n"); return 1; } if (setjmp(env)) { HPDF_Free(pdf); return 1; } /* set error-handler */ HPDF_SetErrorHandler(&error_handler, &env); /* add a new page object. */ page = HPDF_AddPage(pdf); /* print text */ HPDF_Page_BeginText(page); HPDF_Page_SetFontAndSize(page, font, 24); HPDF_Page_MoveTextPos(page, 220, 720); HPDF_Page_ShowText(page, "Hello World"); HPDF_Page_EndText(page); /* set printer options */ HPDF_Page_SetSize(page, HPDF_PAGE_SIZE_A4, HPDF_PAGE_PORTRAIT); //设置纸张大小和方向 HPDF_Page_SetPrintDirect(page, HPDF_TRUE); //设置直接打印模式 HPDF_Page_SetPrintFix(page, HPDF_TRUE); //设置固定打印模式 HPDF_Page_SetPrintPageRange(page, 1, 1); //设置打印页码范围 HPDF_Page_SetPrintCopies(page, 1); //设置打印份数 HPDF_Page_SetPrintDuplex(page, HPDF_PRINT_DUPLEX_SIMPLEX); //设置单面打印 HPDF_Page_SetPrintScaling(page, HPDF_PRINT_SCALING_NONE); //设置不进行缩放 /* save the document to a file */ sprintf(fname, "test.pdf" ); HPDF_SaveToFile(pdf, fname); /* print the document */ HPDF_PrintWithDialog(pdf); /* clean up */ HPDF_Free(pdf); return 0; } ``` 注意:在打印之前需要先将PDF文档保存为文件。另外,打印机的纸盒和纸张大小需要在打印机的设置进行配置,程序无法直接指定。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值