一. 必备软件安装
1. CTex
链接:http://pan.baidu.com/s/1pLis1L5 密码:ngcw
2. Acrobat_pdf
链接:http://pan.baidu.com/s/1i4L4f9j 密码:c1ds
笔者我就是从下面网址下载的…
http://www.xp85.com/html/AdobeAcrobatXPro.html
http://www.sdbeta.com/xiazai/2014/0309/19913.html#download
二. Latex 撰写论文
2.1 下载 IEEE 论文模板
http://www.ieee.org/conferences_events/conferences/publishing/templates.html
亦或者下载本免费资源
http://download.csdn.net/detail/u011414200/9554936
2.2 WinEdt使用
1. 打开软件 WinEdt
2. 拖入模板
将 IEEEtran文件夹里的 bare_conf.tex 文件拖入 WinEdt 软件中。
3. 设定 Latex 选项
- 在 L 旁的下三角处选择 LaTeX
- 然后在每次编写完,保存,就可以 L 下(编译)、
- 然后点击 dvi pdf 就可以生成最终的 PDF 啦~
2.3 论文撰写
其实就是将你预先写好的 word 论文直接复制进去就 OK 啦,遇到问题直接百度,简单的很~
2.4 正确的输出
这样没有任何 Errors 就 OK 啦,如果有语法错误,那么它就停在这里了,此时,你需要将点击那个叉叉(到时会显示红色),让一切重新开始。
三. 常见问题
问题不按先后,遇到就记录的~
3.1 latex排版(CTeX winEdit输出“系统找不到指定的文件”的终极解决办法)
这个问题好像经常出现在Win7系统下。winEdit输出“系统找不到指定的文件”,这里“指定的文件”是“TeXify.exe”等需要运行的程序,而不是当前需要编译的“.tex”文件。所以,问题的本质就是系统找不到“TeXify.exe”等可执行文件,解决问题的方向就明确了,即“WinEdit”中“TeX系统”的“路径”配置有问题。下面开始终结这个问题:
WinEdit的菜单栏中:Options->Execution Modes…切换到第二个选项卡“TeX System”“TeX Root”就是根路径,如果这个路径与你的安装目录不符合,用右边的“放大镜”图标选择你的CTEX的安装路径中的“MiKTeX”,然后把“Auto-detect”选项不要选。点击“OK”退出,
http://www.dataguru.cn/thread-457221-1-1.html
3.2 LaTeX如何正确输入引号:双引号“”单引号‘
使用键盘的 Tab 键上侧的连续键入两个“ 然后输入键盘的两个单引号 ”。单引号输入类似。
http://blog.sina.com.cn/s/blog_5e16f1770100gusb.html
3.3 如何将MathType公式转化为LaTeX
http://jingyan.baidu.com/article/eae078278f4dd81fed54854c.html
3.4 latex中让图片放在指定文字段落后
\usepackage{float}
\begin{figure}[H]
http://blog.csdn.net/hongqiang200/article/details/8432832
3.5 LaTeX之公式及编号
$$x^n+y^n=z^n \eqno{(1)}$$
http://blog.sina.com.cn/s/blog_3fe961ae0101bduo.html
3.6 LaTex表格内单元格内容强制换行
/newcommand{/tabincell}[2]{/begin{tabular}{@{}#1@{}}#2/end{tabular}}%放在导言区
/begin{tabular}{|c|c|}
/hline
1 & the first line //
/hline
2 & /tabincell{c}{haha// heihei//zeze} //
/hline
/end{tabular}
http://blog.sina.com.cn/s/blog_531bb7630101841e.html
3.7 Latex插入图片
1. 单栏
\begin{figure}{h}
\centering %使插入的图片居中显示
\includegraphics[height=5cm ,width=8cm,angle=0,scale=]{fig.eps}
\caption{Example twig query and documents } %插入图片的标题,一般放在图片的下方,放在表格的上方
\end{figure}
2. 双栏
\begin{figure*}{h}
\centering %使插入的图片居中显示
\includegraphics[height=5cm ,width=8cm,angle=0,scale=]{fig.eps}
\caption{Example twig query and documents } %插入图片的标题,一般放在图片的下方,放在表格的上方
\end{figure*}
http://blog.csdn.net/zd0303/article/details/7423629
3.8 将excel图搞出来
先在 Excel 中将图转化成 pdf 格式,然后用 Acrobat 软件打开,然后按照下列步骤:
组织页面 -> 右键图片 -> 剪裁页面(A)-> 调整上下左右即可!
最后将处理后的 pdf 转换成 eps 格式的就 OK 了。
3.9 latex: 改变图的caption Figure 1:为 Fig. 1.
1.只需要在begin{document}后面加上captionsetup即可
\captionsetup[figure]{labelfont={bf},name={Fig.},labelsep=period}
同理,将表格的 TABLE I: 改为 TABLE I.
\captionsetup[figure]{labelfont={bf},name={TABLE.},labelsep=period}
http://blog.csdn.net/fandroid/article/details/50930137
3.10 LaTeX使用入门之特殊符号
http://jingyan.baidu.com/article/f7ff0bfc73344f2e26bb13cb.html