【1】latex 绝对值 http://hi.baidu.com/he_2100/item/61d91df6540b24d243c36a4a
【2】算法环境 http://blog.youkuaiyun.com/xiazhaoqiang/article/details/8134968
【3】CTEX - 在线文档 - TeX/LaTeX 常用宏包 http://www.ctex.org/documents/packages/verbatim/index.htm
【4】算法环境 http://www.ctex.org/documents/packages/verbatim/algorithms.pdf
【5】使用BibTeX引用网址 @Misc{wikipedia,
title = {Wikipedia, the free encyclopedia},
howpublished = "\url{http://www.wikipedia.org}",
} http://maverick.inria.fr/~Nicolas.Holzschuch/bibtex.html#names http://blog.sina.com.cn/s/blog_61f037480101539l.html 需要导入url宏包\usepackage{url},这样就可以自动换行
【6】关于subfigure的引用,可以用\subref命令。参考http://ftp.twaren.net/Unix/TeX/CTAN/obsolete/macros/latex/contrib/subfigure/subfigure.pdf中的An Example Without Subcaption Text
【7】绘制表格。\begin{table} \begin{tabular}...\end{tabular}\end{table} 竟然有这个table环境,但是latex学习手册没有。http://latex.yo2.cn/articles/latex-tabular-example0.html
【8】多重积分:\iint \iiint \iiiint \idotsint 等命令输入
【9】subfigure 横排竖排混合排 subfigure里面嵌套minipage 就可实现,http://blog.sina.com.cn/s/blog_5e16f1770100gdqz.html
【10】把表格中的字体变小点怎么办。在\begin{table}后面加一句\small http://hi.baidu.com/haigyg/item/c2b8e37169e3b042ee1e533d
【11】改变表格的大小,\begin{table}\caption{} \center\resizebox{}{}{\begin{tabular}.,..... } \http://blog.sina.com.cn/s/blog_5504bf520100j7q8.html
【12】LaTeX技巧189:LaTeX括号总结 http://blog.sina.com.cn/s/blog_5e16f1770100gk51.html
【13】我用\includegraphic{}编号是 Figure 1,但是我想改成 Fig. 1.不知道应该怎么弄 \renewcommand\figurename{Fig} http://emuch.net/html/201104/3030350.html
【14】在bib文件中压缩三个连续序号,必须用\usepackage[numbers,sort&compress]{natbib} 而不是\usepackage[sort, compress]{cite}这个宏包。如果直接用这个natbib产生错误, 则因为是文章抬头\documentclass[authoryear,preprint,review,12pt]{elsarticle}已经在引用natbib。 下面你再用\usagepackage{natbib}更改option当然就报错啦。于是问题就解决了,把\usepackage[suqare]{natbib}删掉。然后把抬头改成\documentclass[authoryear,preprint,review,12pt, sort&compress]{elsarticle} http://hi.baidu.com/xuelicheng/item/cf21de09348d9f69d45a119a http://hi.baidu.com/bittnt/item/49c73decaff87fc1bbf37d1c
【15】 bib文件中的特殊名字 符号,例如c 上加一撇,\'{c} http://m.newsmth.net/article/TeX/3593
【16】 figure环境下自动加的图标号怎么去掉? http://www.chinatex.org/bbs/forum.php?mod=viewthread&tid=5124 \usepackage{caption} 用\caption*{the title of figure}命令即可,但是貌似这个宏包影响subfigure。这个竟然可以在elsarticle宏包里修改。
【17】段落之间的间距,如何不让自动调节段落间距,可以在之前加一个\parskip = 0pt解决https://github.com/shifujun/UESTCthesis/issues/2
【18】\linewidth 比\textwidth更具有适应性。http://bbs.ctex.org/forum.php?mod=viewthread&tid=56565,其实这个\textwidth也挺靠谱的。
【19】文本中加横线\rule[raise-height]{width}{thickness} http://bbs.ctex.org/forum.php?mod=viewthread&tid=46297
【20】Acknowledgment 环境其实用\section*就行了,http://bbs.ctex.org/forum.php?mod=viewthread&tid=46022
【21】如何去掉reference标题,\renewcommand\refname{} http://bbs.ctex.org/forum.php?mod=viewthread&tid=47031
【22】改阿拉伯数字为罗马数字\renewcommand{\thetable}{\Roman{table}} http://bbs.ctex.org/forum.php?mod=viewthread&tid=37554
【23】自己动手写latex宏包 http://blog.sciencenet.cn/blog-47522-448380.html
【24】如何编写Latex宏包(一) http://www.cnblogs.com/liyropt/archive/2011/04/07/2007942.html
【25】\parskip 段距,\itemsep条目间距。\parindent表示缩进宽度的长度。\linespread行距
【26】Tex有两个引擎xetex,另外一个是Latex,张林波的CCT,吴凌云的CTeX(同时支持CJK,CCT宏包), 李果正的繁体CJK同样出色都是基于Laxtex引擎的。https://crosstalking.wordpress.com/category/tex/
【27】一个公式多行用宏包中\usepackage{amsmath}中的multline,更精确的是用宏包\usepackage{mathtools}中的\phantom{i + j + k} http://tex.stackexchange.com/questions/44450/how-to-align-a-set-of-multiline-equations
【28】使用bib文件,需要加上\bibliographystyle{},最好也加上\usepackage[comma,authoryear]{natbib} http://sites.stat.psu.edu/~surajit/present/bib.htm
【29】调节array中之间的距离,用\setlength\arraycolsep{2pt}
【30】调整参考文献的距离,\setlength{\bibsep}{0.5ex} %这说明latex默认的参考文献行间距是1.5倍, \setlength{\bibsep}{0ex} %我修改成了单倍行距http://bbs.ctex.org/forum.php?mod=viewthread&tid=50771
【31】subfiugre环境中去掉自动编号,\begin{figure*}[!htb]
\centering
\renewcommand{\thesubfigure}{}就可以去掉这一副图像自动编号,而其它图像不改变
\end{figure}
【32】figure环境下subfigure与subfigure之间的距离可以用\hspace{8pt}%,也可以在后面直接加%,来消除它们的默认距离
【36】[已解决] 小波浪线怎么输入 http://bbs.ctex.org/forum.php?mod=viewthread&tid=34611 (波浪线:$\scriptsize{\sim}$)
【37】参考文献上标与正常引用 http://bbs.ctex.org/forum.php?mod=viewthread&tid=47473 (此行使文献引用以上标形式显示, \newcommand{\supercite}[1]{\textsuperscript{\cite{#1}}}, 应用的时候使用 \supercite, 那么要正常引用的话,只需要用 \cite)
【38】[其他] 关于修改.bst文件(bibtex模板)的几点说明[新增第12点] http://bbs.ctex.org/forum.php?mod=viewthread&tid=46858
【39】数学字体的加粗(\bm{}命令而非\mathbf{}) http://blog.sina.com.cn/s/blog_5e16f1770100nqwx.html (LaTeX技巧458:关于LaTeX数学字体加粗)
【40】文中加一个空行,~\\
【】bib文件查询, http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.231.1604
【】后记:用Elsevier的Latex模版投稿 http://jliebtm.com/postscript-the-latex-template-by-elsevier-contributors/
【】Latex稿件投稿Elsevier杂志 http://gjd730210.blog.163.com/blog/static/3146755320103123226414/