📜  \ aleph-Tex命令(1)

📅  最后修改于: 2023-12-03 15:13:12.332000             🧑  作者: Mango

Aleph-Tex命令介绍

简介

Aleph-Tex是一个LaTeX领域的扩展,可以实现一些高级的排版需求。它在XeTeX基础上进行了扩展,支持Unicode以及OpenType字体,可以非常自由地进行排版。

安装

当前已经支持TeX Live和MiKTeX,可以使用TeX Live Utility或是tlmgr安装:

tlmgr update --self
tlmgr install aleph
常用命令
\usepackage{aleph}

需要在LaTeX文件中使用 \usepackage{aleph} 命令引入aleph。

\setmathfont{font}

在公式中使用特定的OTF字体对数学符号进行排版,例如:

\usepackage{unicode-math}
\setmathfont{XITS Math}
\setmainfont{font}

设置主文本的字体,例如:

\setmainfont{Linux Libertine O}
\setsansfont{font}

设置无衬线字体:

\setsansfont{DejaVu Sans}
\setmonofont{font}

设置等宽字体:

\setmonofont{Inconsolata}
\newfontfamily

使用自定义字体,例如:

\usepackage{fontspec}
\newfontfamily\mycalfont{Zapfino}
\DeclareSymbolFont

定义一个新的数学符号字体,例如:

\DeclareSymbolFont{operators}{T1}{cmr}{m}{n}
\DeclareSymbolFontAlphabet{\mathrm}{operators}
总结

Aleph-Tex 可以在LaTeX的基础上进行更加高级的排版,支持Unicode和OpenType字体,提供了多种字体设置命令和数学符号设置命令,有了它,你将更加轻松地完成各种排版需求。