yychenleslie / SoftMatterDiscuss

软物质交流,讨论。
7 stars 0 forks source link

论文写作工具: LaTeX的安装和使用/ 英语语法修改工具Grammarly #21

Open yychenleslie opened 3 years ago

yychenleslie commented 3 years ago

LaTex后台环境: 从这个网址可以找到所有的Latex环境链接: https://www.latex-project.org/get/ Mac版本的LaTex环境 MacTex: http://www.tug.org/mactex/mactex-download.html Windows版本的LaTex环境 TexLive: https://tug.org/texlive/doc.html

LaTex编辑器: Texstudio: https://www.texstudio.org/

LaTex论文模版: APS和AIP类论文模版 REVTeX 4.2: https://journals.aps.org/revtex/revtex-faq#download用户手册 温州大学硕士毕业论文模版 WZUThesis: https://github.com/iuang0305/WZUThesis 黄杰的JCP论文 LaTeX源文件: 2021_03_29_13_HuangJie.zip

LaTeX语法: way2ml: LaTex快速查询🤪 https://www.way2ml.com/linux/linux_tools/latex.html

图片公式转LaTeX: Mathpix Snip: https://mathpix.com/

doi转bibtex: 利用DOI号可以直接得到参考文献使用的bibtex:https://doi2bib.org/

英语语法修改工具: Grammarly: https://www.grammarly.com/

论文preprint服务: 论文草稿完成即可上传arXiv arXiv: https://arxiv.org/

HuangJiaLian commented 3 years ago

Latex模版下载, 如果对应的杂志没有提供Latex模版,那么可以采取比较通用的模版: 例如 REVTeX 4

HuangJiaLian commented 3 years ago

温州大学数理学院2016级的刘刚师兄做了温州大学毕业论文的LaTex模版 WZUThesis,已经被多次使用, 推荐。@yychenleslie

yychenleslie commented 3 years ago

之前忘记回复了,收到,感谢师兄~ @HuangJiaLian

HuangJiaLian commented 3 years ago

英语语法修改工具Grammarly: https://www.grammarly.com/

  1. 使用非QQ邮箱注册Grammarly (用Gmail或者网易邮箱最好)
  2. 由于官方会员不划算,可以淘宝购买会员(可单独购买一个月,大概60块RMB) 我是用的 直充邮箱的一个月套餐
  3. 使用网页版本的Garmmarly或者他的App应用或Chrome插件,复制你的论文文本即可修改语法。
  4. 要注意它不太能识别有特殊记号的文本。

例如: 你最好将这样的文本

$a^2$ indecate $a$ time $a$.

暂时替换这样:

D indecate E time F.

以便让它理解, 修改。毕竟,还没到那么人工智能。

@yychenleslie

HuangJiaLian commented 3 years ago

macOS下TeXstudio内置PDF阅读器无法正常显示中文”的解决办法:

ln -s /System/Library/Fonts/Supplemental/Songti.ttc /Library/Fonts

参考: https://zhuanlan.zhihu.com/p/108882085

HuangJiaLian commented 3 years ago

subfiguresubcaption不能同时使用:

% 写在LaTeX开头的位置
%\usepackage{subfigure}
\usepackage{subcaption}

...

\begin{figure*}
    \captionsetup[subfigure]{labelformat=empty}
    \begin{subfigure}{.5\textwidth}
        \centering
        \includegraphics[height=3cm]{tikz2eps/neuron}
        \caption{($\text{a}_1$) Test subfigure 1}
    \end{subfigure}%
    \begin{subfigure}{.5\textwidth}
        \centering
        \includegraphics[height=3cm]{tikz2eps/nn}
        \caption{($\text{a}_2$) Test subfigure 1}
    \end{subfigure}%

    \hfill

    \captionsetup[subfigure]{labelformat=empty}
    \begin{subfigure}{.5\textwidth}
        \centering
        \includegraphics[height=3cm]{tikz2eps/neuron}
        \caption{(b1) Test subfigure 1}
    \end{subfigure}%
    \begin{subfigure}{.5\textwidth}
        \centering
        \includegraphics[height=3cm]{tikz2eps/nn}
        \caption{(b2)Test subfigure 2}
    \end{subfigure}%
\caption{Two subfigures}    
\end{figure*}

\begin{figure}
    \captionsetup[subfigure]{labelformat=empty}
    \begin{subfigure}{.25\textwidth}
        \centering
        \includegraphics[height=3cm]{tikz2eps/neuron}
        \caption{($\text{a}_1$) Test subfigure 1}
    \end{subfigure}%
    \begin{subfigure}{.25\textwidth}
        \centering
        \includegraphics[height=3cm]{tikz2eps/nn}
        \caption{($\text{a}_2$) Test subfigure 1}
    \end{subfigure}%

    \hfill

    \captionsetup[subfigure]{labelformat=empty}
    \begin{subfigure}{.25\textwidth}
        \centering
        \includegraphics[height=3cm]{tikz2eps/neuron}
        \caption{(b1) Test subfigure 1}
    \end{subfigure}%
    \begin{subfigure}{.25\textwidth}
        \centering
        \includegraphics[height=3cm]{tikz2eps/nn}
        \caption{(b2)Test subfigure 2}
    \end{subfigure}%
\caption{Two subfigures}    
\end{figure}

@yychenleslie