Advertisement

Mac LaTeX 安装和基本操作

阅读量:

Mac LateX简单实用记录

  • 系统部署与设置
    • 入门操作示例
    • 相关资料

安装配置流程

https://tug.org/mactex/
镜像:https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/Images/

基本使用样例

  • 程序代码
复制代码
    % article,ctexart
    \documentclass{ctexart}
    
    % \usepackage{ctex}
    \title{\heiti 我的第一个文档}
    \author{\kaishu 张三}
    \date{\today}
    
    % 正文区
    \begin{document}
    	\maketitle
    	
    	第一种函数表达方式:$f(x) = 3x^2 + 2$.
    	
    	第二种函数表达方式: 会形成一个段落。
    	$$f(x) = 3x^2 + 2$$
    	
    	第三种表达方式,这是一个函数(带编号的公式):
    	\begin{equation}
    		f(x) = 3x^2 + 2
    	\end{equation}

全部评论 (0)

还没有任何评论哟~