LaTeX常用数学符号大全

LaTeX常用数学符号大全 本文整理了LaTeX中常用的数学符号,包括关系符号、运算符号、集合符号、逻辑符号、箭头符号和希腊字母等。每个符号都附有LaTeX代码和效果展示,方便大家快速查阅和使用。 一、关系符号 符号名称 LaTeX 代码 效果 因此(所以) \therefore ∴ 因为 \because ∵ 等于 = = 不等于 \neq ≠ 约等于 \approx ≈ 小于 < 或 \lt < 大于 > 或 \gt > 小于等于 \leq ≤ 大于等于 \geq ≥ 属于 \in ∈ 不属于 \notin ∉ 包含于 \subseteq ⊆ 真包含于 \subsetneq ⊊ 二、运算符号 符号名称 LaTeX 代码 效果 加号 + + 减号 - - 乘号 \times × 除号 \div ÷ 点乘(内积) \cdot ⋅ 求和符号 \sum ∑ 积分符号 \int ∫ 偏导符号 \partial ∂ 导数符号 \prime ′ 无穷大 \infty ∞ 三、集合符号 符号名称 LaTeX 代码 效果 空集 \varnothing ∅ 自然数集 \mathbb{N} ℕ 整数集 \mathbb{Z} ℤ 实数集 \mathbb{R} ℝ 属于集合 \in ∈ 不属于集合 \notin ∉ 子集 \subseteq ⊆ 并集 \cup ∪ 交集 \cap ∩ 四、逻辑符号 符号名称 LaTeX 代码 效果 逻辑与 \land ∧ 逻辑或 \lor ∨ 非(否定) \lnot ¬ 蕴含 \Rightarrow ⇒ 等价 \Leftrightarrow ⇔ 存在 \exists ∃ 任意 \forall ∀ 五、箭头符号 符号名称 LaTeX 代码 效果 单箭头 \rightarrow → 双箭头 \leftrightarrow ↔ 上箭头 \uparrow ↑ 下箭头 \downarrow ↓ 映射到 \mapsto ↦ 六、希腊字母 符号名称 LaTeX 代码 效果 阿尔法 \alpha α 贝塔 \beta β 伽马 \gamma γ 德尔塔 \delta δ 欧米伽 \omega ω 大写 lambda \Lambda Λ 大写 sigma \Sigma Σ 注意事项 宏包依赖: 部分符号需要加载宏包(如 \mathbb 需要 amssymb): ...

April 8, 2025 · 2 分钟 · 217 字 · 烂石
如何有效提问

如何有效提问?

怎么样提问高效获取信息

March 17, 2025 · 1 分钟 · 61 字 · lanshi

ctex的字体设置

latex字体设置 需要去官网下载相关离线字体,保存到本地再进行应用,因为很多字体并没有版权 宋体字体下载 新罗马字体下载 \documentclass[a4paper,12pt,UTF8,fontset=none]{ctexart} \usepackage{geometry} % 页面设置 \usepackage{xcolor} % Color support for listings \usepackage{graphicx} \usepackage{amssymb} % For join symbol \usepackage{amsmath} \usepackage{listings} \usepackage{longtable} \usepackage{booktabs} % 添加booktabs宏包以支持三线表 \usepackage{newtxtext,newtxmath} \usepackage{fontspec} \usepackage{titlesec} % 设置英文主字体为 Times New Roman \setmainfont{Times New Roman}[Path=D:/Program Files/MiKTeX/fonts/custom/, Extension=.otf] % 设置英文粗体字体为 Times New Roman Bold \newfontfamily\enboldfont{Times New Roman Bold}[Path=D:/Program Files/MiKTeX/fonts/custom/, Extension=.otf] % 设置中文正文字体为宋体 \setCJKmainfont{SimSun}[Path=D:/Program Files/MiKTeX/fonts/custom/, Extension=.ttf] % 设置中文黑体字体 \setCJKfamilyfont{zhhei}{SimHei}[Path=D:/Program Files/MiKTeX/fonts/custom/, Extension=.ttf] \newcommand{\heiti}{\CJKfamily{zhhei}} % 设置标题格式 \titleformat{\section} {\heiti\zihao{-3}\enboldfont}{\thesection}{1em}{} \titleformat{\subsection} {\heiti\zihao{4}\enboldfont}{\thesubsection}{1em}{} \titleformat{\subsubsection} {\heiti\zihao{-4}\enboldfont}{\thesubsubsection}{1em}{} % 设置代码块样式 \lstset{ basicstyle=\ttfamily, columns=fullflexible, frame=single, breaklines=true, postbreak=\mbox{\textcolor{red}{$\hookrightarrow$}\space}, language=SQL, keywordstyle=\color{blue}, commentstyle=\color{gray}, rulecolor=\color{black!30},%边框颜色 stringstyle=\color{red}, escapeinside={\%*}{*)}, showstringspaces=false, captionpos=b % 设置标题位置, b表示在底部 } \geometry{left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm} % 页边距

March 7, 2025 · 1 分钟 · 93 字 · lanshi
访问量 0
访客数 0
文章数 12
总字数 4321words
运行时间 0days 00:00:00