\documentclass[unrestricted,unrestrictedsummary]{sintefreport}
% Customise the following as necessary
\institute{SINTEF Digital}
\address{Postboks 4760 Torgarden\newline 7465 Trondheim\EnglishNorsk{, Norway}{}}
\phone{40005100}
\email{Postmottak.Digital@sintef.no}
\vat{NO 919303808 MVA} % SINTEF AS
%\vat{NO 939350675 MVA} % SINTEF Energy
%\vat{NO 937357370 MVA} % SINTEF Ocean
%\vat{NO 992769211 MVA} % SINTEF Nord
%\vat{NO 962951511 MVA} % SINTEF Narvik
%\vat{NO 918787747 MVA} % SINTEF Nordvest
%\vat{NO 917468044 MVA} % SINTEF Helgeland
%\vat{NO 887622752 MVA} % SINTEF TTO
\title{The \texttt{sintefreport} class}
\subtitle{A \LaTeX\ class}
\version{1.0}
\reportnumber{1337}
\author{Federico Zenith}
\client{SINTEF \LaTeX\ users}
\project{SIN\TeX}
\attachmentpages{}
\abstract{\LaTeX\ is just better.}
\prepared{Federico Zenith}
\keywords{\LaTeX\\Report\\Typesetting}
\coverbackground{}
%\fancypagestyle{firstpage}{
\rhead{\includegraphics[height=2cm]{sdg}}
%}
\begin{document}
\frontmatter
\chapter{Minimal Example}
The simplest report you can write is:
\begin{verbatim}
\documentclass{sintefreport}
\title{My Report}
\begin{document}
\frontmatter
Hello world!
\backmatter
\end{document}
\end{verbatim}
Use \verb|\frontmatter| to set up the front page, history page and
table of contents, and \verb|\backmatter| to set up the back cover.
To set the cover picture, use the command \verb|\coverbackground|.
If you do not specify it, the cover background will be rendered as a uniform
\texttt{sintefgrey}.
If you want to add the customer's logo in the front page, you can use the
\verb|\clientlogo| command to insert anything in the row below the customer's
name.
If you want to add a logo on each page, be it of the customer, a partner, the
project or funding authority, you can simply use \verb|\rhead| in the preamble.
Enclose it in \verb|\fancypagestyle{firstpage}{...}| if you want it only on the
first page of the report.
\chapter{Class Options}
This class takes some special options for classification:
\texttt{unrestrictedsummary}, \texttt{restrictedsummary} and
\texttt{confidentialsummary} determine the classification of the summary
page (page 1).
Fields can be set with several commands.
All relevant fields default to a ``Set with \verb|\command|'' description,
so, to know which command to use to set a certain field, just compile a the
empty file and look at the resulting PDF.
If you set the \texttt{print} option, in addition to changing all colours and
logos to CMYK as in \texttt{sintefdoc}, the class will add a separate white
page after the cover.
This class inherits from \texttt{sintefdoc}, so everything mentioned in that
class' documentation is valid here as well.
In particular, this class passes the \texttt{report} option to
\texttt{sintefdoc}.
If you prefer the old style inherited from \texttt{article}, or want to compile
some old reports without bumping all sections one level up, you can predictably
pass the \texttt{article} class option.
\backmatter
\end{document}