Advertisement

LaTeX理工科排版应用

阅读量:

常用命令

新命令

定义新的命令

复制代码
    \newcommand{\<name>}[<num>]{<defination>}

重命名字体命令

复制代码
    \renewcommand{\heiti}{\CJKfamily{heiti}}

重定义命令

复制代码
    \renewcommand{}{}

重定义命令时防止递归调用1

复制代码
    \renewcommand{\vec}[1]{\vec{\mathbf{#1}}}
复制代码
    \let\oldvec\vec
    \renewcommand{\vec}[1]{\oldvec{\mathbf{#1}}}
字符操作

替换字符 (该方法有效)2

复制代码
    \usepackage{newunicodechar}
    \newunicodechar{Ё}{Е}

XeLaTeX 教程

The XeLaTeX Guide: A Comprehensive Resource for Overleaf Users (an online platform for LaTeX editing)

常用宏包

TiKZ 绘图功能

全部评论 (0)

还没有任何评论哟~