在不同文字处理系统(如 MiKTeX, TeX Live, CTeX, cwTex) 或 不同整合开发环境 ( 如Texstudio, WinEdt, TeXstudio, TeXmaker) 中,我用了 Miktex + Texstudio 的常用组合 (win10环境中)。1: 先MiKTeX,后Texstudio ;
2: 安装包(packages);
3:设置Texstudio的编译器和默认文献工具 ;
4:插入 公式, table, 和 figure ;
5: 参考文献的添加;
6 : 检查 .bib 中的参考文献是否重复添加
7: 生成pdf,并保存.tex版本;
8: 用 latexdiff 比较 不同 .tex 版本之间的差异,并自动标注
9: .tex 格式转换成word格式
10: 截图的公式,转换成word格式
1. 先MiKTeX,后Texstudio
Texstudio 是编辑器,通过 mpm (MiKTeX Package Manager) 装不同的包 。安装完 Miktex,在终端中输入 mpm 来查看 MiKtex Console是否存在并打开。
2:安装包(packages)
在开始菜单 (或终端) 输入 mpm并回车运行。 在 MiKtex Console,点击“Switch to administrator mode” (弹出"用户账户控制", 选择"允许"), 在左侧边栏选择“Package”, 输入包名 按加号。
“ Package Manager ” 和 MiKtex Console 的Package编辑界面很像。 但在 “ Package Manager ”添加包会报 " MiKTeX Problem Report:The operation could not be completed because a required file does not exist. "。
3:设置Texstudio的编译器和默认文献工具
IOP期刊论文时用是IOP template,编译器是PdfLatex,文献工具是:BibTex。当写毕业论文的时候,学校对字体有规范,用XeLatex编译器。PdfLatex编译的速度比较快。
4:.tex template 插入公式, 表格和图片
期刊一般会提供 Latex template,通过 texstudio打开模板中的".tex", 文本中的数学符号 ($...$)、公式、表格 、图片把内容替换进去。比如 IOP 定义了如下命令,分别引用section,figure,table 等,自动加上对应的前缀:
\newcommand{\eref}[1]{(\ref{#1})} \newcommand{\sref}[1]{section~\ref{#1}} \newcommand{\fref}[1]{figure~\ref{#1}} \newcommand{\tref}[1]{table~\ref{#1}} \newcommand{\Eref}[1]{Equation (\ref{#1})} \newcommand{\Sref}[1]{Section~\ref{#1}} \newcommand{\Fref}[1]{Figure~\ref{#1}} \newcommand{\Tref}[1]{Table~\ref{#1}}
用 IOPLatexGuidelines模板对格式的要求和示例很详细,但 iopart (\documentclass[12pt]{iopart}) 与常用的用于公式的宏包
Put the following two lines before just before \usepackage{amsmath} ( 祝曹祥 )
\expandafter\let\csname equation*\endcsname\relax
\expandafter\let\csname endequation*\endcsname\relax
表格, 图片,公式格式举例:
\begin{table}
\caption{BCI performances of Group A and Group B}
\lineup
% \footnotesize\rm
\begin{indented}
\item[]\begin{tabular}{@{}llllllll}
\br
& Test & SNR & Accuracy ($\%$) \\ \mr
Group A & test1 & $1.898\pm0.682$ & $78.80 \pm 18.87$ \cr
& test2 & $2.058\pm0.720$ & $84.15 \pm 15.00$ \cr
Group B & test1 & $1.795\pm0.405$ & $74.00 \pm 10.30$ \cr
& tesr2 & $1.530\pm0.391$ & $72.40 \pm 15.80$ \cr
\br
\end{tabular}
\end{indented}
\label{GroupPerfor}
\end{table}
\begin{figure}
\centering
\includegraphics[scale=0.78]{figs/SNRaccuracyGroupAB}
\caption{Comparisons...}
\label{SNRaccuracyGroupAB}
\end{figure}
\begin{equation}
SNR=\frac{n \times X(K)}{\sum_{k=1}^{n/2}[X(K+k)+X(K-k)]}
\end{equation}
* \label{} 要紧挨着 \end{} 之前申明,过早申明就会报错。
TIPS:
1) 编辑表格生成.tex 表格代码: online, 适用于毕业论文,需要安装的package在复制以后会以%提示,没有提示则不需要另外添加包;从excel复制表格进tablegenerator之前,表格不要留空或者使用合并单元格(可以用_代替)。
2) 将截图公式转换成.tex code 公式代码 : Mathpix snipping tool, 快捷键:CTRL+ALT+M** , 生成的代码,未安装的包用\usepackage{}添加。
5: 参考文献的添加
用 BibTeX 工具,生成参考文献。涉及额外的两个文件:.bst (生成的references的格式) 和 .bib。期刊提供的 .bst 默认了生成的reference的形态格式。对于 .bib,复制scholar提供的标签和内容,在.tex正文中用 \cite{} 引用@article{} 括号中的标签内容。
连续添加多个参考,如 xxx. [8-11]的形式,不是 xxx.[8,9,10,11],需要另外添加 \usepackage{cite} (在导言中), 在正文部分,将文献标签以逗号隔开。
6: 检查 .bib 中的参考文献重复复制 bibtex并在正文引用,在Bibliography处就会生成两个相同的reference。查验 bibtex中的文章是否重复。已经有stackovernet的网友Martin解决了。
该方法是通过 perl在powershell,遍历.bib 文档。#!perl
my %seen =();
my $line = 0;
open my $B, 'file.bib';
while () {
$line++;
# remove all non-alphanumeric characters, because bibtex could have " or { to encapsulate strings etc
s/[^a-zA-Z0-9 _-]//ig;
# lower-case everything to be case-insensitive
# pattern matches lines which start with title
$seen{lc($1)} .= "$line," if /^\s*title\s*(.+)$/i;
}
close $B;
# loop through the title and count the number of lines found
foreach my $title (keys %seen) {
# count number of elements seperated by comma
my $num = $seen{$title} =~ tr/,//;
print "title '$title' found $num times, lines: ".$seen{$title},"\n" if $num > 1;
}
# write sorted list into file
open my $S, '>sorted_titles.txt';
print $S join("\n", sort keys %seen);
close $S;
以下是该方法的复述总结: 以上代码保存程 finddupls.pl 文档放在.bib所在文件夹。 打开powershell, 执行语句: perl finddupls.pl
有重复会列出title。
2. 添加中文文献, 在导言加:
\usepackage{xeCJK}
\setCJKmainfont{SimSun}
7: 生成pdf,并保存.tex版本
编译,生成并保存pdf文件,保存 .tex 文件(建议根据日期或版本命名)。
8: 用 latexdiff 比较 不同 .tex 版本之间的差异,并自动标注
安装 latexdiff 的包。 将两个版本的 .tex 与其引用文件放在同一文件夹下。 在powershell 窗口中输入: latexdiff 旧的版本名.tex 新的版本名.tex > diff.tex
注意:偶尔会出现生成的diff.tex,没有 .aux 文件对应,此时将 diff.tex的文件内容复制到新建的.tex中并运行,生成pdf。
9: latex的 .tex 格式转换成word格式
GrindEQ 是MS word的官方插件, 把.tex文件转换成word。备份.tex文件,用word打开,文件格式选.tex。 转换出来的bibliography 和公式都没问题。只是文中 \Fref, \Tref, \cite 的引用效果都不在了, 需要再编辑。
10: 截图的公式,转换成word格式
Mathpix snipping tool 可以将截图里的公式输出 .tex code, 把code 复制到 .tex。用.tex格式当成一个中转。 通过安装 GrindEQ (作者 Daniel D. Zhang)插件,在 word 打开 .tex的文档,tex的公式都是已word公式显示。
更新,GrindEQ这个软件不注册只能试用。试用期结束以后,价格是100欧元。然后chrome的扩展可以继续解决 latex to word转换公式。
将.tex公式(比如从 Mathpix snipping tool copy得到)复制到网址文本框: http://bandicoot.maths.adelaide.edu.au/MathJax/test/sample-dynamic-2.html 右击 LaTeX2Word-Equation,自动复制,然后在word打开。
作者声明:
1、转载或使用请联系作者。
2、欢迎并感谢指出文中其中可能存在的错误或不妥之处。