% DocAble demonstration fixture — a small article-class paper.
% Exercises sectioned segmentation, a captioned figure (caption-seeded alt), and a
% booktabs table (table/header-rows). Minimal but compilable-shaped.
\documentclass{article}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{booktabs}

\title{A Compact Study of Sorting Throughput}
\author{A. Researcher}
\date{\today}

\begin{document}
\maketitle

\begin{abstract}
We compare three sorting strategies on a shared workload and report the
measured throughput. The results favor the hybrid strategy on large inputs.
\end{abstract}

\section{Introduction}
Sorting dominates the cost of our indexing stage, so its throughput sets an
upper bound on end-to-end performance. We evaluate three strategies.

\section{Results}
Figure~\ref{fig:throughput} plots throughput against input size, and
Table~\ref{tab:summary} summarizes the peak numbers.

\begin{figure}
  \centering
  \includegraphics[width=0.6\textwidth]{throughput.png}
  \caption{Throughput versus input size for the three sorting strategies.}
  \label{fig:throughput}
\end{figure}

\begin{table}
  \centering
  \begin{tabular}{lr}
    \toprule
    Strategy & Peak (M rows/s) \\
    \midrule
    Quicksort & 4.1 \\
    Radix     & 5.8 \\
    Hybrid    & 6.3 \\
    \bottomrule
  \end{tabular}
  \caption{Peak throughput by strategy.}
  \label{tab:summary}
\end{table}

\section{Conclusion}
The hybrid strategy wins on large inputs while matching quicksort on small ones.

\end{document}
