LaTeX Formatting Report
Date: 30 May 2026
Ref: DEMO-001
Document
federated_learning_medical_imaging.tex
Template detected
IEEE Two-Column (86 mm column)
8
Issues found
6
Fixes applied
2
Skipped
Figure 1 uses \textwidth in a two-column layout
Before
\includegraphics[width=\textwidth]{fig_architecture}After
\includegraphics[width=\columnwidth]{fig_architecture}In IEEE two-column documents, \textwidth spans both columns and causes the figure to overflow into the margin. \columnwidth correctly constrains it to a single column.
Figure 2 uses bottom placement [b]
Before
\begin{figure}[b]After
\begin{figure}[t]Bottom-placed figures (\[b]) often appear far from their reference text. IEEE style guidelines recommend top placement (\[t]) for consistent layout and reviewer readability.
Table 1 exceeds column width by 24 mm
Before
\begin{tabular}{l r r r r r}After
\resizebox{\columnwidth}{!}{%
\begin{tabular}{l r r r r r}The table is 110 mm wide but the column width is 86 mm. A \resizebox wrapper scales it to fit without overflowing into the margin or gutter.
Figure 3 uses \textwidth in a two-column layout
Before
\includegraphics[width=\textwidth]{fig_results}After
\includegraphics[width=\columnwidth]{fig_results}Same as Figure 1: \textwidth overflows in two-column mode. Fixed to \columnwidth.
Figure 4 uses [h!] placement - the ! override causes layout conflicts
Before
\begin{figure}[h!]After
\begin{figure}[t]The ! override forces LaTeX to ignore its own spacing constraints, often causing figures to collide with text or footnotes. Replaced with [t] for stable top placement.
Figure 5 subfigure widths sum to 1.04\columnwidth
Before
\begin{subfigure}{0.52\columnwidth}…\begin{subfigure}{0.52\columnwidth}After
\begin{subfigure}{0.48\columnwidth}…\begin{subfigure}{0.48\columnwidth}Subfigure widths of 0.52 + 0.52 = 1.04 exceed the column width, pushing the second subfigure onto a new line. Reduced to 0.48 each (+ 0.04 implicit gutter) to keep them side by side.
Figure 6 appears before its first in-text reference
Figure 6 is placed at line 315 but first referenced at line 342. LaTeX floats should appear after their first citation. Consider moving the figure environment or the reference.
Figure 7 uses [H] placement - requires the float package
[H] is provided by the float package, which is not loaded in this document. This would cause a LaTeX compile error. Added as a warning - either add \usepackage{float} or switch to [t].
Generated by LaTeX Formatter · latexformat.netlify.app
Fixes are deterministic - content is never modified
This is a sample report from a real paper
Generate branded reports like this for your own clients. Add your company name, print to PDF, and send - in under 60 seconds per document.