Report2/
├── main.tex # Main document file
├── sections/
│ ├── Introduction.tex
│ ├── LiteratureReview.tex
│ ├── ProblemStatement.tex
│ ├── Methodology.tex
│ ├── WorkDone.tex
│ └── Results.tex
└── README.md
-
Edit the main template: Update
main.texwith:- Your project title
- Author name(s)
- Abstract and keywords
- Bibliography entries
-
Add content to sections: Edit each
.texfile in thesections/folder with your content:- Introduction.tex
- LiteratureReview.tex
- ProblemStatement.tex
- Methodology.tex
- WorkDone.tex
- Results.tex
-
Compile the document: Use any LaTeX compiler (pdflatex, xelatex, etc.):
pdflatex main.tex
Or if using BibTeX for references:
pdflatex main.tex bibtex main pdflatex main.tex pdflatex main.tex
- IEEE Format: Uses the
IEEEtrandocument class with two-column layout - Modular Structure: Each section is in a separate file for easy management
- Pre-configured Packages: Includes common packages for math, graphics, algorithms, etc.
- Ready for References: Bibliography section included and pre-formatted for IEEE style
- Modify the
\documentclassline inmain.texif you need different options - Add more packages as needed
- Update the keywords and abstract sections
- Add figures, tables, and citations as appropriate
- Use
\cite{ref1}to cite references - Use
\ref{fig:label}and\label{fig:label}for figure references - Use
\input{}for including other files (already set up) - Keep section files focused and avoid too much nesting