latex 编辑文档遇到的问题

编辑IEEE期刊下的文章


1. 问题一:File ended while scanning use of \@newl@bel. (出现在修改出现错误,但是回复后仍然不能运行)

    解决方法:应该是运行时出现问题,直接找到运行时所生成的.aux文件,将其删除重新运行即可。


2. 问题:undefined control sequence.(原因:可能有些包没有引用)

    解决方法:根据具体情况引用包。

常见包:

\usepackage{cite}

\usepackage{graphicx}   %可以插入图片的包

\usepackage[caption=false,font=footnotesize]{subfig}  %可以将两个图片当作子图的插入

\graphicspath{{PIC/}}  %插入图片路径

\DeclareGraphicsExtensions{.pdf,.jpeg,.png}   %插入图片的格式


3. 插入含有子图图片的方法

\begin{figure}[!t]   %figure上带有*就表明插入的图片可以占两栏
\centering
\subfloat[]{\includegraphics[width=0.23\textwidth]{PIC/f6a}
\label{fig6a}}
\hfil
\subfloat[]{\includegraphics[width=0.23\textwidth]{PIC/f6b}
\label{fig6b}}
\caption{ The total caption. (a) The caption of a.(b) The caption of b.}
\label{fig:06}
\end{figure}

4. 插入表格的方法

\begin{table}[!t]
%% increase table row spacing, adjust to taste
\renewcommand{\arraystretch}{1.3}     %该处1.3 表示的是行高
% if using array.sty, it might be a good idea to tweak the value of
\caption{Statistics of the prediction performance in different versions}
\label{Tab:01}
\centering
% Some packages, such as MDW tools, offer better commands for making tables
%% than the plain LaTeX2e tabular which is used here.
\begin{tabular}{c c c c }   %在c中间加 | 线表示这一行有竖线
\hline                               %加该函数,表示在该地多一行线。一般表格为三线格
A & B &  C & D\\
\hline
method1 & 314 & 11911 & 194689\\
method2 & 658 & 9441 & 198501\\
method3 & 248 & 16949 & 681119\\
\hline
\end{tabular}
\end{table}


5. 用latex编辑文档小贴士:可以先用Endnote软件生成好参考文献的格式,再粘贴到latex上更快些。

   

你可能感兴趣的:(技术学习)