南飓风 发表于 2024-6-11 09:37:50

MacOS X 安装免费的 LaTex 情况

最近把工作终端一步步迁移到Mac上来了,搭了个 Latex的情况,跟windows上一样好用。
首先,如果是 intel 芯片的 macOS,那么可以使用组合1,
如果是 M1、M2 或 M3 芯片或者 intel 芯片的 Mac book,则应该使用组合2,
texMaker目前在Mx芯片上工作不行;
1,Mactex + Texmaker
2,Mactex + (VScode + Latex workshop)
效果分别如下图,点击

选择了 Mactex 做编译,用 Texmaker 做编辑;
1. 下载与安装


1.1 Mactex 下载安装

MacOS 安装和示例 LaTex 的编译器 与 编辑器
编译器使用免费的 Mactex:
https://tug.org/mactex/mactex-download.html
https://img-blog.csdnimg.cn/direct/6b43202fe6944a38b01132fda38b8ff2.png
单击页面中的粗体 MacTeX.pkg.  即可开始下载;
下载 完毕后双击,进入安装页面,全部接纳默认配置,一路点击,最后安装几分钟后结束。
如果是M1 M2 等M系列的Mac 电脑,那么不需要安装Texmaker,可以直接使用 已经安装进来的 Texshop,稍显大略,但也能用:
分三步:
1, 打开软件
https://img-blog.csdnimg.cn/direct/cc00b77c2c4146cca11a76c4e3b2d3af.png
2, 输入latex代码
\documentclass{article}
\title{Dawn}
\begin{document}
\maketitle
\[
    Hello\,\, L^{A}T_{E}X\,2_{\epsilon}
\]
\begin{equation}
    f\, =\,a^{x}\,+\,b
\end{equation}
$\backslash$
I read that Knuth divides the\newline
people working with \TeX{} into\newline
\TeX{}nicians and \TeX perts.\\
Today is \today.\\
{{\LaTeX}\,${2_{\epsilon}}$}\newline
\textsl{{\LaTeX}\,${2_{\epsilon}}$}\newline
\[
L^{A}T_{E}X\,2_{\epsilon}
\]
\end{document} 3, 编译显示
https://img-blog.csdnimg.cn/direct/473ef28135684e619e07117d23b7933e.png


1.2 Texmaker 下载安装

在intel的mac电脑中安装 LaTeX 编辑器Texmaker:
https://www.xm1math.net/texmaker/download.html
https://img-blog.csdnimg.cn/direct/d3c98b6f281a40e6b89fa4edb968fd94.png

单击 MacOS X Package 下载即可,
单击 安装包 texmaker-5.1.4.dmg 后,拖拽至application中,
在启动器中直接启动无法打开,需要到application中  ctrl+click,单击open,在弹出的对话框中再单击open 方可启动。
https://img-blog.csdnimg.cn/direct/76c8f357ed7a4214be9d14162cd114ee.png

2. 示例测试

2.1 可用性测试示例

新建文件生存为 hello_world.tex
\documentclass{article}
\title{HelloWorld!}
\author{Jimmy.Runn}
\date{}
\begin{document}
\maketitle

Hello LaTex World!

\end{document}
构建编辑效果:
https://img-blog.csdnimg.cn/direct/8a9bffc909b24a1ab18b3de6b6cb9bce.png

生成pdf文件的效果:
https://img-blog.csdnimg.cn/direct/3b6440e0a6364bdd8e33a1394b5ee4f9.png


3. VS code 结合 latex workshop


3.1 安装

关键信息都在图中可见
https://img-blog.csdnimg.cn/direct/5808a96256524fbcae98887f5f5db597.png

3.2 示例

\documentclass{article}
\title{HelloWorld!}
\author{Jimmy.Runn}
\date{}
\begin{document}
\maketitle

Hello the Most Beautiful LaTex World!\\

Convolution formula:

\begin{equation}
(f\ast g) = \int_{-\infty}^{\infty} f(\tau) g(t-\tau)\, d\tau
\end{equation}

\[
    y = \int_{-\pi}^{\pi}cos(\theta)\, d\theta
\]

\begin{equation}
    e^{ix} = cos\,x + i*sin\,x
\end{equation}

\begin{equation}
e^{i\pi} + 1 = 0
\end{equation}

\end{document} https://img-blog.csdnimg.cn/direct/d4cf58d1d47a4df5a64b3c02387e3dd5.png
4. 直接编译 tex文件


xelatex --interaction=batchmode hello_latex.tex 2>&1 > /dev/null;open hello_latex.pdf 每次带着open 下令,就可以及时查看效果了:
https://img-blog.csdnimg.cn/direct/c2abbef9b87f45ad9b22f02ed63e28ed.png

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: MacOS X 安装免费的 LaTex 情况