35 lines
703 B
TeX
35 lines
703 B
TeX
|
|
\documentclass[]{article}
|
|||
|
|
|
|||
|
|
% fonts: libertine for roman text, inconsolata for monospace
|
|||
|
|
\usepackage{fontspec}
|
|||
|
|
\setmainfont{Linux Libertine O}
|
|||
|
|
\setmonofont{Inconsolata}
|
|||
|
|
|
|||
|
|
% page layout: full page, no paragraph indent
|
|||
|
|
\usepackage{fullpage}
|
|||
|
|
\usepackage{parskip}
|
|||
|
|
|
|||
|
|
% document metadata
|
|||
|
|
\usepackage{hyperref}
|
|||
|
|
\hypersetup{
|
|||
|
|
pdftitle={OpenBMC User’s Guide},
|
|||
|
|
colorlinks=true,
|
|||
|
|
urlcolor=blue
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
% workaround for pandoc / xetex version differences
|
|||
|
|
\providecommand{\tightlist}{%
|
|||
|
|
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
|
|||
|
|
|
|||
|
|
\begin{document}
|
|||
|
|
|
|||
|
|
\title{OpenBMC User's Guide}
|
|||
|
|
\maketitle
|
|||
|
|
|
|||
|
|
\input{rest-api}
|
|||
|
|
\input{host-management}
|
|||
|
|
\input{console}
|
|||
|
|
\input{architecture/code-update/code-update}
|
|||
|
|
|
|||
|
|
\end{document}
|