Skip to main content

How to use Latex to write a conference paper with an example of IEEE style paper

In this tutorial we demonstrate how to write a paper using IEEE class. If you want  to write a paper/article using two column format this is the way to do it. This tutorial covers:


  1. How to write Title of the paper
  2. How to write Author names
  3. How to write Author Address
  4. How to write Author Affiliation
  5. How to write Author Emails
  6. How to write Abstract
  7. How to write the introduction and other sections
  8. How to refer one section in other sections.

Here is the video of the tutorial
 

The code that is used in this tutorial is here: 
\documentclass[conference]{IEEEtran}
\usepackage{cite}
\begin{document}
\title{Sample IEEE paper style using Latex by QuickLatex.blogspot.com}
\author{\IEEEauthorblockN{Author first, Author Second, and Suthor Third}
\IEEEauthorblockA{Department of Latex Typeset\\
Latex University\\
City - State - Zip \\
Email: latex@latex.lates}
}
\maketitle
\begin{abstract}
This is an abstract for a paper to show how to use latex for IEEE paper typeset.
\end{abstract}
\section{Introduction}
\label{sec:intro} 
Here is a modified text sample for intro section using latex. This is how you refer a section in another section Section~\ref{sec:meth} ..... 
\section{Methodologies} 
\label{sec:meth} 
This is the other section that you can use. 
 \end{document}
If you have a question please leave a comment and I will try to answer your question as soon as possible.

Comments

  1. Hai,

    How you write an example, definition, properties and lemmas in IEEE latex file?

    ReplyDelete
  2. Hi,
    How do you write references in this format; Vol. 66, pp. 679-753.

    thank you

    ReplyDelete
  3. Hello, the videos were very helpful. I needed some help with the following issues:
    1. How to insert captions along with numbering for the inserted figures, tables etc. ?
    2. How to cite / ref the figure / table captions in the text (in-line text)
    2. In writing a thesis..... we will have to do different chapters... Could you tell how to start a new chapter like the title and so on.....

    ReplyDelete
  4. Could you please help me how to write complicated mathematical differential equations...and how to use origin plotted graphs (*.tif) in LaTex

    ReplyDelete
  5. Thank you, this is very useful.

    ReplyDelete
  6. ! LaTeX Error: File `IEEEtran.cls' not found.Type X to quit or to proceed,or enter new name. (Default extension: cls)Enter file name:! Emergency stop. \usepackage
    ! ==> Fatal error occurred, no output PDF file produced!
    what should i do??

    ReplyDelete
  7. In this example you have shown for only one author. I have to write for 3 authors, how can I write ?

    ReplyDelete

Post a Comment

Comments on QuickLatex are strictly moderated. As much as I hate moderation, I must fight spam. Please rest assured that if your comment is relevant I will approve it and answer.

Popular posts from this blog

LaTeX Video Tutorial: How to Create a Resume or CV (Curriculum Vitae) using LaTeX

One of the most frequent questions my colleagues ask me is how to create a Resume or Curriculum Vitae (CV), if you will, in LaTeX . I have a style file that was passed to me by a friend who found it on Internet. Since this looked good I used it and, thanks to the original contributor, I am going to share it with you all today. You will be able to download these files and create a professional Resume for yourself.  The files can be download from the linked locations: The Resume.tex file (main document) The Class file res.cls (for page setting) In the video tutorial , attached below, I have explained how to change the text for your needs. The structure of the Resume (or CV) is highly flexible and once you get hold of the basics it will be pretty straight forward for you to tweak it for your own use.  I have tried to add the basic sections that are present in most of the Resumes but you will most probably add more depending on your requirements. I am prett...

Latex Tutorial: How to Create Images, Diagrams, and Flow Charts Using Latex

This tutorial is an extension of previous video tutorial on how to use tikz for image creation in Latex . In this video I explain how to set up your document for flow chat design. This equally applies to any other image that uses similar structure. Specifically, in this video I talk about following things: How to create a flow chart How to setup styles for reusable components of an image How to draw arrows from one component to other How to change the styles of components How to change the arrowhead for Latex arrows How to align components left, right, top, and below of each other The code use:d in the video is here: \documentclass{article} \usepackage{tikz} \usetikzlibrary{shapes,shadows,arrows} \begin{document} \tikzstyle{decision} = [diamond, draw, fill=blue!50] \tikzstyle{line} = [draw, -stealth, thick] \tikzstyle{elli}=[draw, ellipse, fill=red!50,minimum height=8mm, text width=5em, text centered] \tikzstyle{block} = [draw, rectangle, fill=blue!50, text width...

LaTeX Tutorial: How to use Lists in Latex - itemize, enumerate, description, and inparaenum

LaTeX is a great tool for typesetting and it is more powerful than MS-Word. It has a steep learning curve and that is why I believe these video tutorials will help you guys. Today, I am going to talk about lists in LaTeX. LaTeX can produce both bulleted lists or unordered lists, and numbered lists or ordered lists. We will also see how to use lists with descriptions given to each list item. Specifically, we are going to have an introduction of following topics in LaTex: Lists in LaTeX: Itemize, enumerate, inparalist, and description Itemized list in LaTeX for bullets enumerated list in LaTeX for numbered lists inparalist in LaTeX for lists wrapped around text description lists in LaTeX for lists with description for each item Nested lists in LaTeX Using styles for numbering lists (roman, in parenthesis etc.) Use of paralist LaTeX package Here is the video for this tutorial: If you have a question or comment please do not hesitate to leave a comment. I wil...