39. 【IEEE Paper】 Preparing the LaTeX Environment for an IEEE Control Systems Paper

tags: LaTeX,IEEE,ControlEngineering,PaperWriting,VSCode


📝 Introduction

When writing an IEEE Control Systems paper (e.g., TCST),
many authors get stuck before the technical content itself — at the LaTeX stage.

Typical problems include:

In this article, instead of discussing the technical content of the paper,
I focus on the following experiment:

“Building a LaTeX structure that can survive all the way to the end
for an IEEE Control Systems paper.”

This article is a 🧪 work-in-progress log of that experiment.


🤔 Why I fixed the LaTeX structure first

Control Systems papers usually require all of the following at once:

In other words:

If you try to add these later, something will almost certainly break.

So in this experiment:

Instead, the priority was to prepare:

A LaTeX structure that would not collapse before reaching the end.


🛠 Working environment

The actual working state looked like this:

VS Code + IEEEtran working setup


🗂 Initial directory structure

Rather than writing everything in a single file,
I started with a modular structure from the beginning.

2025_HUMANOID_TCST/
├─ main.tex
├─ abstract.tex
├─ intro.tex
├─ related.tex
├─ system.tex
├─ results.tex
├─ discussion.tex
├─ conclusion.tex
├─ refs.bib
└─ figures/

Key points:


⛔ Do not “finish” at this stage

At this stage, it is important:

The only question to answer is:

“Can this structure survive all the way to the end?”


🎯 Goal of this experiment

At this point, the goals were:

The paper content itself can be replaced later without pain.


🔜 Next article

Next, I will publish:

👉 Minimal LaTeX structure PoC for IEEE Control Systems papers


✅ Summary

Next, I will present the structure itself.