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.
Print Stylesheet
Applied via @media print in global.css.
Overrides the warm palette with pure black on white, hides navigation and interactive elements,
and resets spacing for paper margins.
@media print {
/* Strip digital affordances */
nav, header, footer,
.sidebar, .theme-toggle,
[data-interactive="true"] {
display: none !important;
}
/* Override warm palette with pure print tones */
:root {
--background: #ffffff;
--foreground: #000000;
--primary: #800020; /* Burgundy headings survive in print */
--border: #cccccc;
}
/* Remove shadows and blur */
*, *::before, *::after {
box-shadow: none !important;
backdrop-filter: none !important;
text-shadow: none !important;
}
/* Typography for print */
body {
font-family: "Latin Modern Roman", "Times New Roman", serif;
font-size: 11pt;
line-height: 1.5;
color: #000;
}
h1, h2, h3 { color: #800020; page-break-after: avoid; }
h4 { color: #000; }
/* Show link URLs after content */
a[href]::after {
content: " (" attr(href) ")";
font-size: 9pt;
color: #555;
}
a[href^="#"]::after { content: ""; } /* Skip internal anchors */
/* Page setup */
@page {
margin: 2.5cm;
size: A4;
}
/* Avoid orphans and widows */
p { orphans: 3; widows: 3; }
blockquote { page-break-inside: avoid; }
table { page-break-inside: avoid; }
} 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}