https://www.cnblogs.com/dingruihfut/p/9690073.html
下载
https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/Images/
安装
1. 官方文档提示安装
-
- windows如何运行*.bat文件
- 打开cmd:搜索cmd
- 切换到对应磁盘:
d:
- 切换到对应磁盘:
- 将*.bat拖入cmd窗口
- 修改安装路径
-
安装(大约需要一个小时,or 更长时间)
image.png
-
- 实际安装时间:170min。做好持久战准备
image.pngtips: 含*.bat的路径名不能有空格,否则空格前后会被认为是两个命令
latex+ATOM 环境搭建
安装对应的ATOM packages
错误处理
image.png- 检索关键词
Failed Building LaTeX (code ENOENT). spawn pdflatex ENOENT
- 检索关键词
-
- 方案
- 命名是不出现空格
- 重启,是tex live 环境路径生效
image.png
测试
image.png
\documentclass{article}
\begin{document}
你好,\latex。
\end{document}
Command Failed: pdflatex -synctex=1 -interaction=nonstopmode -file-line-error latex.tex
如何使用tex_live
\documentclass{ctexart}
\begin{document}
测试Hello
\end{document}
查找学习latex的工具书
目的:
- 使用latex进行论文写作
- 学会使用TEXTstudio
- 完成ATOM+latex进行写作
虽然报错却可以正常显示
- 学会处理一些基本的问题
总结:
- ATOM+LaTex 环境搭建没有问题,只是编译会报错,但不影响结果
- TeXstudio自动补全功能太强大,但是界面太难看(目前作为写文档的工具),写完在ATOM中看
latex 换行的使用
\documentclass{amsart}
\begin{document}
It is of some concern to me that
the terminology used in multi-section
math courses is not uniform
In several sections of the course of on
matrix theory, the term
"hamiltonian-reduced" is used.
I, personally, would rather call these
"hyper-simple". I invite others to comment on this problem
Of special concern to me is the terminology
in the course by Prof.~Rudi H
Since his field is new, there is no accepted
terminology. It is imperative
that we arrive at a satisfactory solution.
\end{document}
image.png
换行需要空行
正确显示中文
\documentclass[UTF8]{ctexart}
\begin{document}
\section{文字}、
特可爱排版
\section{数学}
\[
a^{2}+b^{2}=c^{2}
\]
\end{document}
image.png
latex 产生ps文件,xelatex直接输出pdf文件。ps2pdf,将ps转化为pdf
例子
提纲
\documentclass{ctexart}
\title{勾股定理}
\author{张三}
\date{\today}
\bibliography{plain}
\begin{document}
\maketitle
\tableofcontents
\section{古代}
\section{近代}
\bibliography{math}
\end{document}
image.png
tips:
- 空行分段
- 段前不用打空格,latex自动完成文字缩进
- 汉字后面的空格被忽略,其他符号后面的空格被保留
prepare for NEM in elsevier
\documentclass[a4paper,11pt]{elsarticle}
\usepackage{times}
\begin{document}
Mathematics!
\end{document}
image.png
不显示摘要问题
image.pngimage.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
图片修改经验
- 1.配色,是文字明显
- legend不要边框
- 不出现重复数据?靶板上的辐射剖面也是重复?
- 所有的legend都不出现边框?
- 删除辐射剖面
- 删除 zeff分布
- 删除空白分布
- zeff放到一张图上
问题
- 删除所有图例的边框
-
是否需要添加sep边界线?
image.png
image.png
-
Source in elsevier
-
Elsevier article class
image.png
-
elsarticle 官方文档
[elsarticle.cls】(https://www.elsevier.com/__data/assets/pdf_file/0008/56843/elsdoc-1.pdf)
查看tex live官方库
refs:
[tex live安装] (https://blog.csdn.net/qq_42815188/article/details/100865131)
网友评论