How to Add Copyright Notice and Conference Name in IEEE Conference Latex Template
After sending the acceptance notification, most of the IEEE conferences ask authors to add a copyright notice at the left footer and the conference name at the right header position of the first page in the manuscript. In this tutorial, I note the required code to do that.
Code for Copyright Notice and Conference Name
\documentclass[conference]{IEEEtran}
\usepackage[latin9]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\makeatletter
\def\ps@IEEEtitlepagestyle{
\def\@oddfoot{\mycopyrightnotice}
\def\@evenfoot{}
}
\def\mycopyrightnotice{
{\footnotesize xxx-x-xxxx-xxxx-x/xx/\$31.00~\copyright~2018 IEEE\hfill} % <--- Change here
\gdef\mycopyrightnotice{}
}
\@ifundefined{showcaptionsetup}{}{
\PassOptionsToPackage{caption=false}{subfig}}
\usepackage{subfig}
\makeatother
\usepackage{eso-pic}
\newcommand\AtPageUpperMyright[1]{\AtPageUpperLeft{
\put(\LenToUnit{0.5\paperwidth},\LenToUnit{-1cm}){
\parbox{0.5\textwidth}{\raggedleft\fontsize{9}{11}\selectfont #1}}
}}
\newcommand{\conf}[1]{
\AddToShipoutPictureBG*{
\AtPageUpperMyright{#1}
}
}
\title{Your Paper Title goes right Here}
\conf{International Conference on XXXXX, XXXX and XXXXX (ICXXX) 14-16 November, 2018} % Change according to their suggestion
\begin{document}
\author{\IEEEauthorblockN{Author I\IEEEauthorrefmark{1}, Author II\IEEEauthorrefmark{2}, Author III\IEEEauthorrefmark{3}, and Author IV\IEEEauthorrefmark{4}}
\IEEEauthorblockA{Dept of Computer Science and Engineering, University of X,
Country X\IEEEauthorrefmark{1}\\
Dept of Computer Science and Engineering, University of Y, Country Y\IEEEauthorrefmark{2}\IEEEauthorrefmark{3}\\
Institute of Information Technology, University of Z, Country Z\IEEEauthorrefmark{4}\\
Email: authorI\IEEEauthorrefmark{1}@gmail.com, authorII\IEEEauthorrefmark{2}@ieee.org, authorIII\IEEEauthorrefmark{3}@gmail.com,
authorIV\IEEEauthorrefmark{4}@universityz.edu}
}
\maketitle
\begin{abstract}
Abstract goes here
\end{abstract}
\section{Introduction}
Introduction here
\section{Literature Overview}
Background or existing work summaries \cite{roy2017combined}
\section{Methodology}
Methodology explained here
\section{Implementation and Result}
Graphs or outputs here
\section{Discussion}
Significance, Limitations, and Future works here
\section{Conclusion}
Conclusion here
\bibliographystyle{IEEEtran}
\bibliography{References} % Using Bibtex for References.bib
% that's all folks
\end{document}
You will find the code in Overleaf
The output will look like the following-
If you find this post helpful, and want to support this blog, you can or
Related Posts
You can find a comprehensive list of Latex resources in the following post:
If you are a new Latex user, check out this post: 20 Most Common Mistakes Made by New Latex Users
You can find all Latex
oriented posts of mine in: https://shantoroy.com/categories/#latex
- How to write an algorithm in Latex
- How to add subfigure in Latex
- Preparing Tables for Publication and Documentation in Latex
- How to Write Matrix with Row/Column Labels in Latex
- How to Collaboratively Write a Paper using Overleaf Latex Platform
- Itemize, Enumerate, and To-do-list in Latex
- Latex Table for Survey in IEEE two-column format
- Line Plotting using Latex PGFPlots
- How to add Codes in Latex:
listings
package for code documentation - Bibliography management with Bibtex in Latex
- Creating Multiple Line plots from CSV file using Latex Tikz and PGFPlot
- How to Draw a Literature Survey Taxonomy Tree in Latex
- How to Convert Python Matplotlib Plots to Latex Plots (Easiest Way) for Academic Papers
Promotions and Referrals (US Residents Only)
- Chime: Open a Checking account at Chime using my referral link and get $100 after your employer deposit paycheck of minimum $200 within the first 45 days.
- Rakuten: Get $30 after you spend $30 at Rakuten select stores after you use my referral link to open an account.
-
Chase Freedom Credit Card: Earn $200 cash back with Chase Freedom Unlimited or Chase Freedom Flex credit card. I can be rewarded if you apply using my referral link and are approved for the card.
- Chase Checking Account: Get $200 when you open a checking account using my referral link after your first salary is deposited.
- Discover: Earn $50 cash back with Discover when you apply using my referral link and are approved for the card.
- Amex Blue Cash Preferred: Earn $250 as statement credit when you spend $3000 in first six months. Apply using my referral link.
Leave a comment