- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
如何每页纸紧凑打印8张幻灯片
如何每页纸紧凑打印8张幻灯片PowerPoint自带的以讲义模式打印,每页纸4、6或9张幻灯片,相互的间距过大,浪费纸张且文字过小,不便于阅读。对于4:3的幻灯片,为做到如下效果,可以先把幻灯片保存为PDF格式,(一张幻灯片就是一页PDF,注意,不要用讲义模式),再用Adobe reader设置为Multiple 2 by 4 进行打印便可。曾经广为流传的一个方法是,将所有幻灯片输出为图片,将这些图片全部插入Word中,在Word中设置分成两栏,并通过多次尝试来调整上下左右的页边距以达到2*4的紧凑效果。左右页边距过小会导致图片过大,以至于只能达到2*3的效果,而且每页下面会留有很大的空白;左右页边距过大,所有图片都太小,不便于阅读且浪费纸张。而且输出为图片和把图片插入Word这两个过程,都很耗时并消耗大量系统资源,容易造成无响应。另外,输出为图片时似乎无法为幻灯片加边框,(因为FrameSlides只在PrintOptions和ExportAsFixedFormat时可用,而Export时不可用。如果还有其他方法,还望高手指点)如果在Word中用宏为所有图片加上边框,代码如下Sub Example()Dim MyInlineShape As InlineShapeApplication.ScreenUpdating = FalseFor Each MyInlineShape In ActiveDocument.InlineShapesWith MyInlineShape.Borders .OutsideLineStyle = wdLineStyleThinThickSmallGap .OutsideColorIndex = wdColorAutomatic .OutsideLineWidth = wdLineWidth300pt End WithNext Application.ScreenUpdating = TrueEnd Sub 上面的.OutsideLineStyle,顾名思义,表示边框的线型,可取如下值:NameValueDescriptionwdLineStyleDashDot5A dash followed by a dot.wdLineStyleDashDotDot6A dash followed by two dots.wdLineStyleDashDotStroked20A dash followed by a dot stroke, thus rendering a border similar to a barber pole.wdLineStyleDashLargeGap4A dash followed by a large gap.wdLineStyleDashSmallGap3A dash followed by a small gap.wdLineStyleDot2Dots.wdLineStyleDouble7Double solid lines.wdLineStyleDoubleWavy19Double wavy solid lines.wdLineStyleEmboss3D21The border appears to have a 3-D embossed look.wdLineStyleEngrave3D22The border appears to have a 3-D engraved look.wdLineStyleInset24The border appears to be inset.wdLineStyleNone0No border.wdLineStyleOutset23The border appears to be outset.wdLineStyleSingle1A single solid line.wdLineStyleSingleWavy18A single wavy solid line.wdLineStyleThickThinLargeGap16An internal single thick solid line surrounded by a single thin solid line with a large gap between them.wdLineStyleThickThinMedGap13An internal single thick solid line surrounded by a single thin solid line with a medium gap between them.wdLineStyleThickThinSmallGap10An internal single thick solid line sur
文档评论(0)