Champagne Paper

Resources / Print & LaTeX

Print & LaTeX

Champagne Paper extends into the physical world. The print stylesheet strips digital affordances and renders clean, journal-quality output. The LaTeX class brings the same typographic hierarchy into academic paper submissions.

Screen vs Print

Screen

Xuperson Review

Platform Dynamics in Executive Education

Understanding how platform orchestrators and complementors co-create value in post-pandemic executive education markets.

Read Article →

Print / PDF

Platform Dynamics in Executive Education

Understanding how platform orchestrators and complementors co-create value in post-pandemic executive education markets.

Navigation, CTAs, and chrome removed. Link URLs appended inline.

LaTeX Class

The xuperson.cls LaTeX class adapts the Champagne Paper typographic hierarchy for academic paper submission. It uses the OFL-licensed Latin Modern Roman (self-hosted, never served from CDN) and the xcolor package for burgundy headings.

xuperson.cls (excerpt)

\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{xuperson}[2026/05/05 Xuperson Institute Paper Class]

\LoadClass[11pt, a4paper, twocolumn]{article}

% Font stack
\usepackage{lmodern}           % Latin Modern Roman (OFL licensed)
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}

% Champagne Paper colors
\usepackage{xcolor}
\definecolor{burgundy}{RGB}{128, 0, 32}
\definecolor{champagne}{RGB}{252, 252, 233}
\definecolor{warmink}{RGB}{27, 27, 39}

% Headings in Burgundy
\usepackage{titlesec}
\titleformat{\section}{\large\bfseries\color{burgundy}}{\thesection.}{0.5em}{}
\titleformat{\subsection}{\normalsize\bfseries\color{warmink}}{\thesubsection.}{0.5em}{}

% Abstract styling
\renewenvironment{abstract}{%
  \small\begin{center}\bfseries Abstract\end{center}%
  \begin{quotation}
}{\end{quotation}}

% Hyperlinks in burgundy
\usepackage{hyperref}
\hypersetup{colorlinks=true, linkcolor=burgundy, urlcolor=burgundy, citecolor=burgundy}

% Page margins
\usepackage[top=2.5cm, bottom=2.5cm, left=2cm, right=2cm]{geometry}

Sample document

\documentclass{xuperson}

\title{Platform Complementor Dynamics in Cross-Border Education}
\author{Dr. Julian Xu \\ Xuperson Institute}
\date{May 2026}

\begin{document}
\maketitle

\begin{abstract}
This paper examines microfoundational mechanisms through which
platform complementors negotiate value capture...
\end{abstract}

\section{Introduction}
...
\end{document}