This is a custom IEEE conference paper template based on the original LateX example provided by IEEE and Overleaf template. Use with IntelliJ IDEA by JetBrains®.
A working LaTeX
distribution (i.e. TeX Live) and TeXiFy IDEA plugin pre-installed in the editor.
.
├── bib
│ └── document.bib # Bibliography (BibTeX) example
├── figures
│ └── figure01.png # Example graphical figure.
├── LaTeX-IEEE-Template.iml
├── out # Output directory. (Generated PDF file will be here.)
├── README.md
├── sections # (Optional) Separate folder for sections in the document.
│ └── introduction.tex # Example section.
└── src
├── document.tex # Main document.
└── IEEEtran.cls # IEEEtran Class file.
Run Generate document
configuration from toolbar or execute these commands in order.
> pdflatex -file-line-error -interaction=nonstopmode -synctex=1 -output-format=pdf -output-directory=/home/anjalo/Documents/GitHub/AnjaloHettiarachchi/LaTeX-IEEE-Template/out document.tex
> cd out ; bibtex document
> cd .. ; pdflatex -file-line-error -interaction=nonstopmode -synctex=1 -output-format=pdf -output-directory=/home/anjalo/Documents/GitHub/AnjaloHettiarachchi/LaTeX-IEEE-Template/out document.tex
> pdflatex -file-line-error -interaction=nonstopmode -synctex=1 -output-format=pdf -output-directory=/home/anjalo/Documents/GitHub/AnjaloHettiarachchi/LaTeX-IEEE-Template/out document.tex