SPSS 在语法中设置分页符
是否可以使用输出查看器的语法设置分页符?我正在寻找以编程方式控制输出窗口中的内容的方法;一切似乎都是通过指向和点击来完成的。
Is it possible to set page breaks using syntax for the Output viewer? I am looking for ways to programmatically control the content in the output window; everything seems to be done by pointing and clicking.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
脚本文档随 Python 插件一起安装,或者您可以使用基本脚本编辑器中的帮助。
Scripting doc is installed with the Python plugin, or you can use the help in the Basic scripting editor.
有一个广泛的脚本接口,可以使用 Python 或 Basic 与查看器一起使用。 api item.SetPageBreak(True) 将执行此操作。
但最简单的方法是使用 SPSSINC MODIFY OUTPUT 扩展命令,该命令允许您指定要插入中断的对象类型并为您执行此操作。
您可以从 SPSS 开发人员中心 (www.spss.com/devcentral) 获取它。
There is an extensive scripting interface for working with the Viewer using either Python or Basic. The api item.SetPageBreak(True) will do this.
But the easiest way to do this is to use the SPSSINC MODIFY OUTPUT extension command, which allows you to specify the object types where you want to insert a break and does this for you.
You can get it from SPSS Developer Central (www.spss.com/devcentral).
标题例如
TITLE "my title".
或副标题将产生分页符(至少如果导出为 PDF)。只需将(子)标题留空(TITLE "".
)即可,您不想打印任何标题。A title e.g.
TITLE "my title".
or subtitle will produce a pagebrake (At least if you export to PDF). Just leave the (sub)title empty (TITLE "".
) you don't want any title printed.