惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Threat Research - Cisco Blogs
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
S
Schneier on Security
博客园 - 三生石上(FineUI控件)
P
Proofpoint News Feed
G
Google Developers Blog
Project Zero
Project Zero
小众软件
小众软件
NISL@THU
NISL@THU
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
V
Vulnerabilities – Threatpost
B
Blog RSS Feed
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
宝玉的分享
宝玉的分享
博客园 - 司徒正美
Simon Willison's Weblog
Simon Willison's Weblog
Schneier on Security
Schneier on Security
G
GRAHAM CLULEY
GbyAI
GbyAI
Recent Announcements
Recent Announcements
Cisco Talos Blog
Cisco Talos Blog
C
Cisco Blogs
C
CXSECURITY Database RSS Feed - CXSecurity.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
C
CERT Recently Published Vulnerability Notes
罗磊的独立博客
T
Tailwind CSS Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
I
Intezer
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
PCI Perspectives
PCI Perspectives
S
Security @ Cisco Blogs
Google Online Security Blog
Google Online Security Blog
M
MIT News - Artificial intelligence
C
Cybersecurity and Infrastructure Security Agency CISA
T
Threatpost
B
Blog
The Hacker News
The Hacker News
Attack and Defense Labs
Attack and Defense Labs
腾讯CDC
T
Tenable Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

博客园 - everest33

计算机 ClickHouse原理解析和应用实践学习笔记 图床 HTTP学习笔记 机器学习学习记录 squid学习笔记 VMware平时记录 摄影随记 IDEA vim配置(.vimrc文件) 分布式系统 杂记 Dockerfile、Docker镜像和Docker容器的关系 Java多线程学习笔记 正则表达式学习记录 ELK 学习笔记 Java泛型之通配符 Java中的类型擦除与桥方法 shell中 >/dev/null 2>&1 是什么意思 Visual Studio Code 学习记录
Aspose 学习记录
everest33 · 2020-10-14 · via 博客园 - everest33

※,有个和aspose类似的产品 spire,待研究

<repositories>
<repository>
<id>com.e-iceblue</id>
<url>https://repo.e-iceblue.cn/repository/maven-public/</url>
</repository>
</repositories>

<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.presentation.free</artifactId>
<version>3.9.0</version>
</dependency>

※,关于word中的LaTeX和域公式的一些说明

  • 总结: `Alt + F9(Shift + F9)`是用于切换 域代码和域显示的,`Alt + \`是用于切换LaTeX代码和LaTeX显示的。
  • 域公式的语法和LaTeX的语法不一样。比如三分之二的域公式写法为:·\eq \f(2,3)·, 三分之二的LaTeX写法是·\frac{2}{3}·
  • word中书写域公式的方法:使用快捷键ctrl+F9即可在word中插入一个域(word中的所谓域通俗讲就是一个字段,一般是作为占位符的一个预定义字段), 域以一对带底色的花括号表示,内有光标提示键入内容。键入【\eq 】(注意\eq后有个空格)表示这是一个公式(equation)域。输入域公式代码后按 shift + F9可以将域公式代码转换为正常显示的公式。shift + F9是将光标所在的单个域(包括普通域和域公式)在域公式代码和正常显示的公式之间切换。Alt + F9是将word中的所有的域(包括普通域和域公式)切换。
  • word中LaTeX公式的写法:普通模式下键入两个$符号,然后在两个$符号之间书写LaTeX,如`$\frac{2}{3}$`,然后使用快捷键` alt + \`在LaTeX代码和正常显示之间切换。注意:alt + \ 只会转换光标所在的LaTeX代码,如果想转换所有可以选中所有的LaTeX代码然后按alt + \ 即可。
  • 输入的LaTeX代码转换为正常显示的公式后,可以使用mathtype插件打开。
  • LaTeX公式切换为正常显示后,再使用Shift + F9转换为域的话,会显示为·{ EMBED Equation DSMT4 }·,右键->equation对象->edit 则会打开mathtype编辑器。

※,


1. https://www.evge[还有敏感词...]t.com/article/2020/7/7/36853.html (evge t 敏感词...)

1.doc.MailMerge.DeleteFields(); // 删除未使用的空白域

1.

// 移除某个 mergeField
            Field theField = null;
            for (Field field : document.getRange().getFields()) {
                if (field.getType()==59 && "highestScore".equals(((FieldMergeField) field).getFieldName())) {
                   theField = field;
                }
            }
            if (null != theField) {
                theField.remove();
            }

1.  DocumentBuilder 类

  • DocumentBuilder documentBuilder = new DocumentBuilder(new Document("path/to/test.docx")); // 此时 指针 位置位于文档的开头
  • documentBuilder.insertDocument(new Document("path/to/ test_1.docx"), ImportFormatMode.USE_DESTINATION_STYLES); // insertDocument()方法会将指针置于test_1.docx文件的最后
  • documentBuilder.insertDocument(new Document("path/to/ test_2.docx"), ImportFormatMode.USE_DESTINATION_STYLES);// 以上三行代码生成的文档顺序是:test_1-----test_2-----test

1.

1.

1.

1.