常用数学特殊符号,复制到word中使用

正 负 ±
根 号

因 为

所 以

大於或等於

少於或等於
 
大约等於

不等於

全 等

垂 直

角 度

度 数
o
圆 形

十字圆

直角三角形

空 集
?
交 集

和 集

无限大

积分符号

线积分符号

-------------------------------------------------------------------------------
1
几何符号
⊥‖∠⌒⊙≡≌ △
2
代数符号∝∧∨
∫≠ ≤≥≈∞∶
3
运算符号
×÷√ ±
4
集合符号
∪∩∈
5
特殊符号∑ π(圆周率)

6
推理符号

|a| ⊥ ∽ △ ∠ ∩ ∪ ≠ ≡ ± ≥ ≤ ∈ ← ↑ → ↓ ↖ ↗ ↘ ↙ ‖ ∧ ∨
&;§
①②③④⑤⑥⑦⑧⑨⑩
Γ Δ Θ∧ Ξ Ο ∏∑ Φ Χ Ψ Ω
α β γ δ ε ζ η θ ι κ λ μ ν ξ ο π ρ σ τ υ φ χ ψ ω
Ⅰ Ⅱ Ⅲ Ⅳ Ⅴ Ⅵ Ⅶ Ⅷ Ⅸ Ⅹ Ⅺ Ⅻ
ⅰ ⅱ ⅲ ⅳ ⅴ ⅵ ⅶ ⅷ ⅸ ⅹ
∈∏∑∕√∝∞∟∠∣‖∧∨∩∪∫∮∴∵∶∷∽≈≌≈≠≡≤≥≤≥≮≯⊕⊙⊥
⊿⌒ ℃
指数0123º¹²³
----------------------------------------------------------------

希腊字母

Α α Κ κ Τ σ
Β β ∧ λ Υ τ
Γ γ Μ μ Φ υ
Δ δ Ν ν Χ φ
Ε ε Ξ ξ Ψ χ
Ζ ζ Ο ο Ω ψ
Η η ∏ π
Θ θΡ ρ
Ι ι∑ l

------------------------------------------------------------
数学符号

±
+ - × ÷
∑ ∏
≈ ≠
≤ ≥ < >
≮ ≯
∫ ∞ →
∨ ∵ ∴
∪ ∩ ∈

⊥ ‖ ∠ ⌒ ⊙ ≌ ∽

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
可以使用 Apache POI 库实现将数学公式转换到 Word 文档。具体步骤如下: 1. 首先,需要在 pom.xml 文件添加 Apache POI 的依赖: ``` <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>4.1.2</version> </dependency> ``` 2. 创建一个 Word 文档,并添加一个段落: ``` XWPFDocument document = new XWPFDocument(); XWPFParagraph paragraph = document.createParagraph(); ``` 3. 创建一个数学公式对象,并设置公式内容: ``` XWPFMath math = paragraph.createRun().getCTR().addNewOMath(); CTOMath ctomath = CTOMath.Factory.parse("数学公式内容"); math.setOMath(ctomath); ``` 其,"数学公式内容" 是你要插入的数学公式的内容,可以使用 LaTeX 语法编写。 4. 将 Word 文档保存到本地: ``` FileOutputStream out = new FileOutputStream("文件路径"); document.write(out); out.close(); ``` 完整代码示例: ``` import java.io.FileOutputStream; import org.apache.poi.xwpf.usermodel.*; import org.openxmlformats.schemas.officeDocument.x2006.math.CTOMath; public class MathFormulaToWord { public static void main(String[] args) throws Exception { XWPFDocument document = new XWPFDocument(); XWPFParagraph paragraph = document.createParagraph(); XWPFMath math = paragraph.createRun().getCTR().addNewOMath(); CTOMath ctomath = CTOMath.Factory.parse("数学公式内容"); math.setOMath(ctomath); FileOutputStream out = new FileOutputStream("文件路径"); document.write(out); out.close(); } } ``` 注意:在将 LaTeX 语法转换为 MathML 语法时,需要借助一些工具,例如 MathJax、LaTeX2MathML 等。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值