Camera-Ready Instructions

Publication

WiOpt is technically co-sponsored by the IEEE Control Systems Society, IEEE Information Theory Society and IFIP. All accepted papers will be published in the IFIP DL open library with Open Access and will be also submitted for inclusion into IEEE Xplore.

NOTE: to be able to upload your camera ready PDF on EDAS you will need to perform the following steps:

  1. Fill and upload the IFIP copyright form. See the instructions below;
  2. After finalizing your PDF by addressing the comments of the reviewers, certify the PDF by uploading it on PDF eXpress (see the instructions below);
  3. Register to the conference following the instructions at this link. In the confirmation of payment you will find a registration code that needs to be copied in EDAS when uploading the camera ready (number part only of [N123456789], e.g., 12346789). The registration code appears under the field Payment order number in the payment receipt. (this is no longer required in EDAS.)

A completed copyright form is required to guarantee publication and to upload the camera ready. The copyright form may be found at: http://www.ifip.org/images/stories/ifip/public/publications/dlcopyright.pdf

Please fill and sign the copyright form, and name a scanned copy as “copyright-[PAPER ID].pdf”. Upload the signed copyright form to EDAS before uploading your camera ready paper. If you encounter any errors in EDAS, please email the EDAS Chair (trukaize@gmail.com) along with the camera-ready paper and the completed copyright form (https://www.ifip.org/images/stories/ifip/public/publications/dlcopyright.pdf).

Instructions for camera-ready submission

  • The pdf files must be at most 8 pages long and have version 1.4 or higher. All fonts must be embedded, and the pdf should not contain bookmarks or links.
  • The following page sizes are allowed: letter, A4. Only fonts 10 pt and larger may be used. The paper must have 2 columns. The minimum line spacing is 11 pt. For letter-sized paper, the left and right margins must be at least 0.625 in. The top margin must be at least 0.7 in. The bottom margin must be at least 0.9 in. For A4 paper, the left and right margins must be at least 1.2 cm. The top margin must be at least 1.8 cm. The bottom margin must be at least 2.5 cm.
  • Check the compatibility of your pdf file using IEEE PDF eXpress. The website is https://ieee-pdf-express.org/account/login. Click on “Create account” to create a new account, entering 64696X as conference ID. Enter your email address, choose a password, and click on “Submit” to create an account. Once you are logged in, follow the instructions to upload your camera ready paper. PDF eXpress will check your paper and will inform you about the outcome via email. If the paper is Xplore compliant, upload the paper attached to the PDF eXpress email to EDAS as your camera ready version.
  • The strict submission deadline is 27th, September.
  • The abstract should be no more than 250 words.
  • Please use the IEEE Templates for Conference Proceedings.

Instructions for registration

To guarantee publication of a WiOpt paper, a full registration is required for each paper, and the paper must be presented at the conference. A single registration is valid for up to two papers. Please visit this link to register for the conference and/or the workshops.

Help with embedded fonts

Sometimes the embedding of fonts can be an issue. Here are some points to overcome this problem.

Times, Helvetica etc are used by usepackage{}: if you do not really need this, disable and run pdflatex. Otherwise, use the command ‘pdffonts yourfilename.pdf’ to identify if all the fonts are embedded. Ensure that the columns for ‘emb’ and ‘sub’ have only ‘yes’ in it. If not, either use adobe utilities, or try

  1. pdftops filename.pdf
  2. ps2pdf14 -dPDFSETTINGS=/prepress -dEmbedAllFonts=true filename.ps newfilename.pdf

Now you can upload the file newfilename.pdf (please also check pdffonts to see ‘yes’). In maths, the bbm package usually is problematic. In such cases, a brute force replacement by some other compatible package or changing the notation will do the trick of eliminating type3 fonts. Use pdffonts to see any Type 3 fonts, such fonts will not pass the pdfeXpress check during the final submission. External images by includegraphics{} can create problems. A quick way to check is by using documentclass[draft,letter,conference,10pt] as preamble and run pdflatex. If the problem is the images, you can perform the step below. One way is to embed the fonts in each image, by the following command

  1. gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dEmbedAllFonts=true
  2. -sOutputFile=OUTPUT_FILE_NAME.pdf -f INPUT_FILE_NAME.pdf

and then run pdflatex yourfilename.tex.