美文网首页
2020-04-26 Latex 环境搭建+ elsevier

2020-04-26 Latex 环境搭建+ elsevier

作者: 锅炉工的自我修养 | 来源:发表于2020-04-27 01:05 被阅读0次

https://www.cnblogs.com/dingruihfut/p/9690073.html

下载

https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/Images/

安装

1. 官方文档提示安装

    1. windows如何运行*.bat文件
      1. 打开cmd:搜索cmd
      1. 切换到对应磁盘:d:
      1. 将*.bat拖入cmd窗口
      1. 修改安装路径
      1. 安装(大约需要一个小时,or 更长时间)


        image.png
      1. 实际安装时间:170min。做好持久战准备

tips: 含*.bat的路径名不能有空格,否则空格前后会被认为是两个命令

image.png

latex+ATOM 环境搭建

安装对应的ATOM packages

ATOM 配置

搭建完成之后的测试


错误处理

image.png
    1. 检索关键词
      Failed Building LaTeX (code ENOENT). spawn pdflatex ENOENT
    1. 方案
    • 命名是不出现空格
    • 重启,是tex live 环境路径生效
image.png
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

https://www.zhihu.com/question/25696183

\documentclass{ctexart}
\begin{document}
    测试Hello
\end{document}

https://blog.csdn.net/zywhehe/article/details/83113214

查找学习latex的工具书

目的:

    1. 使用latex进行论文写作
    1. 学会使用TEXTstudio
    1. 完成ATOM+latex进行写作

虽然报错却可以正常显示

    1. 学会处理一些基本的问题

overleaf
More Math Into LaTeX下载


总结:

    1. ATOM+LaTex 环境搭建没有问题,只是编译会报错,但不影响结果
    1. 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:

    1. 空行分段
    1. 段前不用打空格,latex自动完成文字缩进
    1. 汉字后面的空格被忽略,其他符号后面的空格被保留

公式


prepare for NEM in elsevier

manuscript

\documentclass[a4paper,11pt]{elsarticle}
\usepackage{times}
\begin{document}
    Mathematics!
\end{document}
image.png

不显示摘要问题

image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png

图片修改经验

  • 1.配色,是文字明显
    1. legend不要边框
    1. 不出现重复数据?靶板上的辐射剖面也是重复?
    1. 所有的legend都不出现边框?
    1. 删除辐射剖面
    1. 删除 zeff分布
    1. 删除空白分布
    1. zeff放到一张图上

问题

    1. 删除所有图例的边框
    1. 是否需要添加sep边界线?


      image.png
      image.png

Source in elsevier

    1. 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)

相关文章

网友评论

      本文标题:2020-04-26 Latex 环境搭建+ elsevier

      本文链接:https://www.haomeiwen.com/subject/buhlwhtx.html