Wednesday, 7 September 2016

How To Write a IEEE Paper in LaTeX? Part-3

Step-7: Insert text

\section{name of the section} - To create new section.
\subsection{name of the subsection} - To create subsection.
\subsubsection{name of the subsubsection} - To create subsubsection.

Step-8: Insert Images

\begin{figure}[!h]   %[!h] to place in exact location. To place figure in top use [!t] nd [!b] for bottom.
\centering                  
\includegraphics[width=2in,height=2in]{figure} %Figure should be in the same folder, where .txt file is stored. You can also use [scale= 1] instead if width and height.
\caption{Figure caption}
\label{fig_name} %Label to the figure. It is optional

\end{figure}

Step-9 Insert Tables

\begin{table}[!h]
\centering
\caption{Students name and age}
\label{table}
\centering

\begin{tabular}{|c|c|c|}  %%  Number of Columns
\hline                              %%  Horizontal Line
S.no & name & age \\    %% "&" Separates Columns
\hline
\hline
1  &  Krishna & 22 \\
\hline
2 & Madhu & 33 \\
\hline
3 & Deepak & 25 \\
\hline
\end{tabular}


\end{table}

Now if you RUN this, you can see
if you don't want the gap between heading and rest of the table. Simply remove one \hline
You can see 
If you want Bold text in headings. use {\bf text} as shown below
{\bf S.no} & {\bf Name} &{\bf Age } \\

With this you will complete your paper.
Multi row, multi column figures and tables will be discussed in next part.



Monday, 5 September 2016

How To Write a IEEE Paper in LaTeX? Part-2

Step-4:
After installing MiKTeX 2.9, open IEEE zip file
Choose bare-conf.tex  for conference or bare-jrnl.tex for journal.

  • Create one folder anywhere on your PC
  • Open bare-conf.tex 
  • Click on "File", Click on "Save as"and save in the folder you created.
  • Open that .txt file
  • To change Syntax of the code ==> Click on "Format", choose "Syntax Coloring" in that Choose "LaTex". 
  • To change Font of the code ==>  Click on "Format", choose "Font", I prefer to choose "Callibri" and size 12".

Step-5
  1. Click on "RUN" symbol .
  2. You will see this 
3. Click on "Change".



4. Choose "Packages shall be installed from the internet" and click on "Next".

5. Choose any country in that list, I prefer China HTTP or FTP. Then click on Finish and wait 1 min to install those packages.
6. You will see Demo paper by now.



Step-6: Install Packages
These packages are necessary to use images, equations, symbols and tables etc.
Below are some packages shown, we have to write before begin document as shown.
Syntax is "\usepackage{name}"


\usepackage{graphicx} - To use images
\usepackage{amsmath} - To use Math equations
\usepackage{amssymb} - To use Symbols
\usepackage{bbding} - To use Bullets
\usepackage{multirow} - To use multirows in Tables
\usepackage{balance} - To balance paper
and many more..

Repeat Step-5 to install these packages from internet.