Description of titles.

Titles and abstracts help users find your content. Typically, activites need titles and an abstract. For example:
\documentclass{ximera}
 
\title{Title of your activity}  
\author{Your name here}  
\begin{document}  
\begin{abstract}  
  A one-sentence description of the activity.  
\end{abstract}  
\maketitle  
\end{document}

Title styles

To help make a book, XiMeRa provides syle commands for the titles of the activities. These should be used in the xourse file.

\documentclass{xourse}
 
\title{Title of your activity}  
\author{Your name here}  
\begin{document}  
\begin{abstract}  
  A one-sentence description of the xourse (optional).  
\end{abstract}  
\maketitle  
 
\chapterstyle  
\activity{path-to-someActivity.tex}  
\sectionstyle  
\activity{path-to-someOtherActivity.tex}  
 
\end{document}