Skip to content

Commit

Permalink
Added subtitle to html and latex formats.
Browse files Browse the repository at this point in the history
  • Loading branch information
John MacFarlane committed Jun 22, 2013
1 parent 05719b6 commit 64544de
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 0 deletions.
3 changes: 3 additions & 0 deletions default.beamer
Expand Up @@ -113,6 +113,9 @@ $endfor$
$if(title)$
\title{$title$}
$endif$
$if(subtitle)$
\subtitle{$subtitle$}
$endif$
$if(author)$
\author{$for(author)$$author$$sep$ \and $endfor$}
$endif$
Expand Down
3 changes: 3 additions & 0 deletions default.dzslides
Expand Up @@ -102,6 +102,9 @@ $endfor$
$if(title)$
<section class="title">
<h1 class="title">$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
$for(author)$
<h2 class="author">$author$</h2>
$endfor$
Expand Down
3 changes: 3 additions & 0 deletions default.epub
Expand Up @@ -18,6 +18,9 @@ $endfor$
<body>
$if(titlepage)$
<h1 class="title">$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
$for(author)$
<h2 class="author">$author$</h2>
$endfor$
Expand Down
3 changes: 3 additions & 0 deletions default.epub3
Expand Up @@ -22,6 +22,9 @@ $endfor$
<body>
$if(titlepage)$
<h1 class="title">$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
$for(author)$
<h2 class="author">$author$</h2>
$endfor$
Expand Down
3 changes: 3 additions & 0 deletions default.html
Expand Up @@ -37,6 +37,9 @@
$if(title)$
<div id="$idprefix$header">
<h1 class="title">$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
$for(author)$
<h2 class="author">$author$</h2>
$endfor$
Expand Down
3 changes: 3 additions & 0 deletions default.html5
Expand Up @@ -39,6 +39,9 @@ $endfor$
$if(title)$
<header>
<h1 class="title">$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
$for(author)$
<h2 class="author">$author$</h2>
$endfor$
Expand Down
3 changes: 3 additions & 0 deletions default.latex
Expand Up @@ -135,6 +135,9 @@ $endfor$
$if(title)$
\title{$title$}
$endif$
$if(subtitle)$
\subtitle{$subtitle$}
$endif$
\author{$for(author)$$author$$sep$ \and $endfor$}
\date{$date$}

Expand Down
3 changes: 3 additions & 0 deletions default.revealjs
Expand Up @@ -48,6 +48,9 @@ $endfor$
$if(title)$
<section>
<h1 class="title">$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
$for(author)$
<h2 class="author">$author$</h2>
$endfor$
Expand Down
3 changes: 3 additions & 0 deletions default.s5
Expand Up @@ -54,6 +54,9 @@ $endfor$
$if(title)$
<div class="titleslide slide">
<h1>$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
<h2>$for(author)$$author$$sep$<br/>$endfor$</h2>
<h3>$date$</h3>
</div>
Expand Down
3 changes: 3 additions & 0 deletions default.slideous
Expand Up @@ -60,6 +60,9 @@ $endfor$
$if(title)$
<div class="slide titlepage">
<h1 class="title">$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
<p class="author">
$for(author)$$author$$sep$<br/>$endfor$
</p>
Expand Down
3 changes: 3 additions & 0 deletions default.slidy
Expand Up @@ -44,6 +44,9 @@ $endfor$
$if(title)$
<div class="slide titlepage">
<h1 class="title">$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
<p class="author">
$for(author)$$author$$sep$<br/>$endfor$
</p>
Expand Down

0 comments on commit 64544de

Please sign in to comment.