Latex to write IEEE paper (2) dynamic reference
Monday, 19. December 2005, 14:36:24
IEEEtran_HOWTO.pdf is a good guide to show you how to use the templates to start your journal writting. But I do face some difficulties without modify the templates. I have many graphs to include into my paper, which is in format of EPS. In order me to work well with graphics, i need to add this
just under the
I took away the page break
Add in keyword field
There are three things which will be the references of my paper.
1. Other's researcher's work.
2. Graphs (include statistical results and diagrams)
3. Tables
While writting your paper, the references will keep changing, cause you have page constrain, you cannot have more then 8 pages for some conferences submission, some references you might want to taken out, add in new graphs or other references on the fly. One of the advantages of LATex is it support dynamic references. Every references in your paper have an identifier. you can refer to your references base on the identifier and latex will take care the numbering. If you have experience of using word editing software to write paper, you will know what I really mean.
Okay, how to do it?
1. Other's researcher's work
Include these at the end of your tex files. When you want to refers to that paper, you will do like bellow
2. Graphs
Here is the example that how I insert my graph
And I refers this figure with
3. Table
Do the same thing, add in the \label and refer with ~\ref
\usepackage[dvips]{graphicx}
just under the
\documentclass[conference]{IEEEtran}
I took away the page break
%\IEEEpeerreviewmaketitle
Add in keyword field
\begin{keywords}
Put any keyword at here, what ever you like.
\end{keywords}
There are three things which will be the references of my paper.
1. Other's researcher's work.
2. Graphs (include statistical results and diagrams)
3. Tables
While writting your paper, the references will keep changing, cause you have page constrain, you cannot have more then 8 pages for some conferences submission, some references you might want to taken out, add in new graphs or other references on the fly. One of the advantages of LATex is it support dynamic references. Every references in your paper have an identifier. you can refer to your references base on the identifier and latex will take care the numbering. If you have experience of using word editing software to write paper, you will know what I really mean.
Okay, how to do it?
1. Other's researcher's work
\bibitem{AODV-RFC}
Charles E. Perkins, Elizabeth M. Royer, S. Das. \emph{RFC 3561 Ad hoc On-Demand Distance Vector (AODV) Routing.} \relax July 2003.
\bibitem{DSDV}
Charles E. Perkins, Pravin Bhagwat. \emph{Highly Dynamic Destination-Sequenced Distance-Vector Routing (DSDV) for Mobile Computers.}
\relax INFOCOM 1994, page 602 – 609.
...
Include these at the end of your tex files. When you want to refers to that paper, you will do like bellow
Ad Hoc On-Demand Distance Vector (AODV) routing protocol \cite{AODV-RFC} is a combination of DSDV and Dynamic Source Routing (DSR)...
2. Graphs
Here is the example that how I insert my graph
\begin{figure}
\begin{center}
\includegraphics[width=3.0in]{g1.eps}
\caption{Data Delivery Ratio of AODV and DSDV in dense and sparse networks}
\label{fig:DDR-DnS} % THIS IS YOUR IDENTIFIER
\end{center}
\end{figure}
And I refers this figure with
The data delivery ratio results of four different scenarios are shown in Figure~\ref{fig:DDR-DnS}.
3. Table
Do the same thing, add in the \label and refer with ~\ref














