← BackSample report - demo only

LaTeX Formatting Report

Date: 30 May 2026

Ref: DEMO-001

Document

federated_learning_medical_imaging.tex

Template detected

IEEE Two-Column (86 mm column)

Summary

8

Issues found

6

Fixes applied

2

Skipped

Fixes Applied

ERRORFigure Width · line 87

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.

ERRORFloat Placement · line 112

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.

ERRORTable Overflow · line 156

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.

ERRORFigure Width · line 201

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.

ERRORFloat Placement · line 234

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.

ERRORSubfigure Alignment · line 278

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.

Warnings - Review Recommended

WARNINGFigure Order · line 315

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.

WARNINGFloat Placement · line 389

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.