Added templates as a git submodule.
This should make it easier for people to track updates to their custom templates.
This commit is contained in:
parent
1c28c5308f
commit
b43873a9ea
18 changed files with 4 additions and 709 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "templates"]
|
||||
path = templates
|
||||
url = git@github.com:jgm/pandoc-templates.git
|
1
templates
Submodule
1
templates
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit dd34104f5a5c05da86e38adefdc66922a9e075cb
|
|
@ -1,84 +0,0 @@
|
|||
\enableregime[utf] % use UTF-8
|
||||
|
||||
\setupcolors[state=start]
|
||||
\setupinteraction[state=start, color=middleblue] % needed for hyperlinks
|
||||
|
||||
\setuppapersize[letter][letter] % use letter paper
|
||||
\setuplayout[width=middle, backspace=1.5in, cutspace=1.5in,
|
||||
height=middle, header=0.75in, footer=0.75in] % page layout
|
||||
\setuppagenumbering[location={footer,center}] % number pages
|
||||
\setupbodyfont[11pt] % 11pt font
|
||||
\setupwhitespace[medium] % inter-paragraph spacing
|
||||
|
||||
\setuphead[section][style=\tfc]
|
||||
\setuphead[subsection][style=\tfb]
|
||||
\setuphead[subsubsection][style=\bf]
|
||||
|
||||
% define descr (for definition lists)
|
||||
\definedescription[descr][
|
||||
headstyle=bold,style=normal,align=left,location=hanging,
|
||||
width=broad,margin=1cm]
|
||||
|
||||
% prevent orphaned list intros
|
||||
\setupitemize[autointro]
|
||||
|
||||
% define defaults for bulleted lists
|
||||
\setupitemize[1][symbol=1][indentnext=no]
|
||||
\setupitemize[2][symbol=2][indentnext=no]
|
||||
\setupitemize[3][symbol=3][indentnext=no]
|
||||
\setupitemize[4][symbol=4][indentnext=no]
|
||||
|
||||
\setupthinrules[width=15em] % width of horizontal rules
|
||||
|
||||
% for block quotations
|
||||
\unprotect
|
||||
|
||||
\startvariables all
|
||||
blockquote: blockquote
|
||||
\stopvariables
|
||||
|
||||
\definedelimitedtext
|
||||
[\v!blockquote][\v!quotation]
|
||||
|
||||
\setupdelimitedtext
|
||||
[\v!blockquote]
|
||||
[\c!left=,
|
||||
\c!right=,
|
||||
before={\blank[medium]},
|
||||
after={\blank[medium]},
|
||||
]
|
||||
|
||||
\protect
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
|
||||
\starttext
|
||||
$if(title)$
|
||||
\startalignment[center]
|
||||
\blank[2*big]
|
||||
{\tfd $title$}
|
||||
$if(author)$
|
||||
\blank[3*medium]
|
||||
{\tfa $for(author)$$author$$sep$\crlf $endfor$}
|
||||
$endif$
|
||||
$if(date)$
|
||||
\blank[2*medium]
|
||||
{\tfa $date$}
|
||||
$endif$
|
||||
\blank[3*medium]
|
||||
\stopalignment
|
||||
$endif$
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
$endfor$
|
||||
$if(toc)$
|
||||
\placecontent
|
||||
$endif$
|
||||
|
||||
$body$
|
||||
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
$endfor$
|
||||
\stoptext
|
|
@ -1,23 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
|
||||
<article>
|
||||
<articleinfo>
|
||||
<title>$title$</title>
|
||||
$for(author)$
|
||||
<author>
|
||||
$author$
|
||||
</author>
|
||||
$endfor$
|
||||
$if(date)$
|
||||
<date>$date$</date>
|
||||
$endif$
|
||||
</articleinfo>
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
$endfor$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
$endfor$
|
||||
</article>
|
|
@ -1,66 +0,0 @@
|
|||
$if(html5)$
|
||||
<!DOCTYPE html>
|
||||
<html$if(lang)$ lang="$lang$"$endif$>
|
||||
$else$
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$>
|
||||
$endif$
|
||||
<head>
|
||||
$if(html5)$
|
||||
<meta charset="utf-8" />
|
||||
$else$
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
$endif$
|
||||
<meta name="generator" content="pandoc" />
|
||||
$for(author)$
|
||||
<meta name="author" content="$author$" />
|
||||
$endfor$
|
||||
$if(date)$
|
||||
<meta name="date" content="$date$" />
|
||||
$endif$
|
||||
<title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title>
|
||||
$if(html5)$
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
$endif$
|
||||
$if(highlighting-css)$
|
||||
<style type="text/css">
|
||||
$highlighting-css$
|
||||
</style>
|
||||
$endif$
|
||||
$for(css)$
|
||||
<link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$/>
|
||||
$endfor$
|
||||
$if(math)$
|
||||
$if(html5)$
|
||||
$else$
|
||||
$math$
|
||||
$endif$
|
||||
$endif$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
</head>
|
||||
<body>
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
$endfor$
|
||||
$if(title)$
|
||||
$if(html5)$
|
||||
<header>
|
||||
$endif$
|
||||
<h1 class="title">$title$</h1>
|
||||
$if(html5)$
|
||||
</header>
|
||||
$endif$
|
||||
$endif$
|
||||
$if(toc)$
|
||||
$toc$
|
||||
$endif$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
$endfor$
|
||||
</body>
|
||||
</html>
|
|
@ -1,130 +0,0 @@
|
|||
\documentclass$if(fontsize)$[$fontsize$]$endif${article}
|
||||
\usepackage{amssymb,amsmath}
|
||||
$if(xetex)$
|
||||
\usepackage{ifxetex}
|
||||
\ifxetex
|
||||
\usepackage{fontspec,xltxtra,xunicode}
|
||||
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
|
||||
\else
|
||||
\usepackage[mathletters]{ucs}
|
||||
\usepackage[utf8x]{inputenc}
|
||||
\fi
|
||||
$else$
|
||||
\usepackage[mathletters]{ucs}
|
||||
\usepackage[utf8x]{inputenc}
|
||||
$endif$
|
||||
$if(natbib)$
|
||||
\usepackage{natbib}
|
||||
\bibliographystyle{plainnat}
|
||||
$endif$
|
||||
$if(biblatex)$
|
||||
\usepackage{biblatex}
|
||||
$if(biblio-files)$
|
||||
\bibliography{$biblio-files$}
|
||||
$endif$
|
||||
$endif$
|
||||
$if(lhs)$
|
||||
\usepackage{listings}
|
||||
\lstnewenvironment{code}{\lstset{language=Haskell,basicstyle=\small\ttfamily}}{}
|
||||
$endif$
|
||||
$if(verbatim-in-note)$
|
||||
\usepackage{fancyvrb}
|
||||
$endif$
|
||||
$if(fancy-enums)$
|
||||
% Redefine labelwidth for lists; otherwise, the enumerate package will cause
|
||||
% markers to extend beyond the left margin.
|
||||
\makeatletter\AtBeginDocument{%
|
||||
\renewcommand{\@listi}
|
||||
{\setlength{\labelwidth}{4em}}
|
||||
}\makeatother
|
||||
\usepackage{enumerate}
|
||||
$endif$
|
||||
$if(tables)$
|
||||
\usepackage{ctable}
|
||||
\usepackage{float} % provides the H option for float placement
|
||||
$endif$
|
||||
$if(strikeout)$
|
||||
\usepackage[normalem]{ulem}
|
||||
% avoid problems with \sout in headers with hyperref:
|
||||
\pdfstringdefDisableCommands{\renewcommand{\sout}{}}
|
||||
$endif$
|
||||
$if(subscript)$
|
||||
\newcommand{\textsubscr}[1]{\ensuremath{_{\scriptsize\textrm{#1}}}}
|
||||
$endif$
|
||||
$if(url)$
|
||||
\usepackage{url}
|
||||
$endif$
|
||||
$if(graphics)$
|
||||
\usepackage{graphicx}
|
||||
% We will generate all images so they have a width \maxwidth. This means
|
||||
% that they will get their normal width if they fit onto the page, but
|
||||
% are scaled down if they would overflow the margins.
|
||||
\makeatletter
|
||||
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth
|
||||
\else\Gin@nat@width\fi}
|
||||
\makeatother
|
||||
\let\Oldincludegraphics\includegraphics
|
||||
\renewcommand{\includegraphics}[1]{\Oldincludegraphics[width=\maxwidth]{#1}}
|
||||
$endif$
|
||||
\usepackage[breaklinks=true,unicode=true,pdfborder={0 0 0}]{hyperref}
|
||||
\setlength{\parindent}{0pt}
|
||||
\setlength{\parskip}{6pt plus 2pt minus 1pt}
|
||||
$if(listings)$
|
||||
\usepackage{listings}
|
||||
$endif$
|
||||
$if(numbersections)$
|
||||
$else$
|
||||
\setcounter{secnumdepth}{0}
|
||||
$endif$
|
||||
$if(verbatim-in-note)$
|
||||
\VerbatimFootnotes % allows verbatim text in footnotes
|
||||
$endif$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
|
||||
$if(title)$
|
||||
\title{$title$}
|
||||
$endif$
|
||||
$if(author)$
|
||||
\author{$for(author)$$author$$sep$\\$endfor$}
|
||||
$endif$
|
||||
$if(date)$
|
||||
\date{$date$}
|
||||
$endif$
|
||||
|
||||
\begin{document}
|
||||
$if(title)$
|
||||
\maketitle
|
||||
$endif$
|
||||
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
|
||||
$endfor$
|
||||
$if(toc)$
|
||||
\tableofcontents
|
||||
|
||||
$endif$
|
||||
$body$
|
||||
$if(biblio-files)$
|
||||
$if(natbib)$
|
||||
$if(biblio-title)$
|
||||
$if(book-class)$
|
||||
\renewcommand\bibname{$biblio-title$}
|
||||
$else$
|
||||
\renewcommand\refname{$biblio-title$}
|
||||
$endif$
|
||||
$endif$
|
||||
\bibliography{$biblio-files$}
|
||||
$endif$
|
||||
$endif$
|
||||
$if(biblatex)$
|
||||
\printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$
|
||||
$endif$
|
||||
$for(include-after)$
|
||||
|
||||
$include-after$
|
||||
$endfor$
|
||||
|
||||
\end{document}
|
|
@ -1,18 +0,0 @@
|
|||
$if(has-tables)$
|
||||
.\"t
|
||||
$endif$
|
||||
.TH $title$ $section$ "$date$" $description$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
$endfor$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
$endfor$
|
||||
$if(author)$
|
||||
.SH AUTHORS
|
||||
$for(author)$$author$$sep$; $endfor$.
|
||||
$endif$
|
|
@ -1,23 +0,0 @@
|
|||
$if(titleblock)$
|
||||
% $title$
|
||||
% $for(author)$$author$$sep$; $endfor$
|
||||
% $date$
|
||||
|
||||
$endif$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
|
||||
$endfor$
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
|
||||
$endfor$
|
||||
$if(toc)$
|
||||
$toc$
|
||||
|
||||
$endif$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
|
||||
$include-after$
|
||||
$endfor$
|
|
@ -1,13 +0,0 @@
|
|||
$for(include-before)$
|
||||
$include-before$
|
||||
|
||||
$endfor$
|
||||
$if(toc)$
|
||||
__TOC__
|
||||
|
||||
$endif$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
|
||||
$include-after$
|
||||
$endfor$
|
|
@ -1,27 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<office:document-content xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" office:version="1.0">
|
||||
$automatic-styles$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
<office:body>
|
||||
<office:text>
|
||||
$if(title)$
|
||||
<text:h text:style-name="Heading_20_1" text:outline-level="1">$title$</text:h>
|
||||
$endif$
|
||||
$for(author)$
|
||||
<text:p text:style-name="Author">$author$</text:p>
|
||||
$endfor$
|
||||
$if(date)$
|
||||
<text:p text:style-name="Date">$date$</text:p>
|
||||
$endif$
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
$endfor$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
$endfor$
|
||||
</office:text>
|
||||
</office:body>
|
||||
</office:document-content>
|
|
@ -1,24 +0,0 @@
|
|||
$if(title)$
|
||||
$title$
|
||||
|
||||
$endif$
|
||||
$if(author)$
|
||||
#+AUTHOR: $for(author)$$author$$sep$; $endfor$
|
||||
$endif$
|
||||
$if(date)$
|
||||
#+DATE: $date$
|
||||
|
||||
$endif$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
|
||||
$endfor$
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
|
||||
$endfor$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
|
||||
$include-after$
|
||||
$endfor$
|
|
@ -1,23 +0,0 @@
|
|||
$if(titleblock)$
|
||||
$title$
|
||||
$for(author)$$author$$sep$; $endfor$
|
||||
$date$
|
||||
|
||||
$endif$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
|
||||
$endfor$
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
|
||||
$endfor$
|
||||
$if(toc)$
|
||||
$toc$
|
||||
|
||||
$endif$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
|
||||
$include-after$
|
||||
$endfor$
|
|
@ -1,39 +0,0 @@
|
|||
$if(title)$
|
||||
$title$
|
||||
|
||||
$endif$
|
||||
$for(author)$
|
||||
:Author: $author$
|
||||
$endfor$
|
||||
$if(date)$
|
||||
:Date: $date$
|
||||
$endif$
|
||||
$if(author)$
|
||||
|
||||
$else$
|
||||
$if(date)$
|
||||
|
||||
$endif$
|
||||
$endif$
|
||||
$if(math)$
|
||||
.. role:: math(raw)
|
||||
:format: html latex
|
||||
|
||||
$endif$
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
|
||||
$endfor$
|
||||
$if(toc)$
|
||||
.. contents::
|
||||
|
||||
$endif$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
|
||||
$endfor$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
|
||||
$include-after$
|
||||
$endfor$
|
|
@ -1,27 +0,0 @@
|
|||
{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
|
||||
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
|
||||
\widowctrl\hyphauto
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
|
||||
$if(title)$
|
||||
{\pard \qc \f0 \sa180 \li0 \fi0 \b \fs36 $title$\par}
|
||||
$endif$
|
||||
$for(author)$
|
||||
{\pard \qc \f0 \sa180 \li0 \fi0 $author$\par}
|
||||
$endfor$
|
||||
$if(date)$
|
||||
{\pard \qc \f0 \sa180 \li0 \fi0 $date$\par}
|
||||
$endif$
|
||||
$if(spacer)$
|
||||
{\pard \ql \f0 \sa180 \li0 \fi0 \par}
|
||||
$endif$
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
$endfor$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
$endfor$
|
||||
}
|
|
@ -1,69 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
$for(author)$
|
||||
<meta name="author" content="$author$" />
|
||||
$endfor$
|
||||
$if(date)$
|
||||
<meta name="date" content="$date$" />
|
||||
$endif$
|
||||
<title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title>
|
||||
<!-- configuration parameters -->
|
||||
<meta name="defaultView" content="slideshow" />
|
||||
<meta name="controlVis" content="hidden" />
|
||||
$if(highlighting-css)$
|
||||
<style type="text/css">
|
||||
$highlighting-css$
|
||||
</style>
|
||||
$endif$
|
||||
$for(css)$
|
||||
<link rel="stylesheet" href="$css$" type="text/css" />
|
||||
$endfor$
|
||||
$if(s5includes)$
|
||||
$s5includes$
|
||||
$else$
|
||||
<!-- style sheet links -->
|
||||
<link rel="stylesheet" href="ui/default/slides.css" type="text/css" media="projection" id="slideProj" />
|
||||
<link rel="stylesheet" href="ui/default/outline.css" type="text/css" media="screen" id="outlineStyle" />
|
||||
<link rel="stylesheet" href="ui/default/print.css" type="text/css" media="print" id="slidePrint" />
|
||||
<link rel="stylesheet" href="ui/default/opera.css" type="text/css" media="projection" id="operaFix" />
|
||||
<!-- S5 JS -->
|
||||
<script src="ui/default/slides.js" type="text/javascript"></script>
|
||||
$endif$
|
||||
$if(math)$
|
||||
$math$
|
||||
$endif$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
</head>
|
||||
<body>
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
$endfor$
|
||||
<div class="layout">
|
||||
<div id="controls"></div>
|
||||
<div id="currentSlide"></div>
|
||||
<div id="header"></div>
|
||||
<div id="footer">
|
||||
<h1>$date$</h1>
|
||||
<h2>$title$</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="presentation">
|
||||
$if(title)$
|
||||
<div class="slide">
|
||||
<h1>$title$</h1>
|
||||
<h3>$for(author)$$author$$sep$<br/>$endfor$</h3>
|
||||
<h4>$date$</h4>
|
||||
</div>
|
||||
$endif$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
$endfor$
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,70 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
$for(author)$
|
||||
<meta name="author" content="$author$" />
|
||||
$endfor$
|
||||
$if(date)$
|
||||
<meta name="date" content="$date$" />
|
||||
$endif$
|
||||
$if(highlighting-css)$
|
||||
<title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title>
|
||||
<style type="text/css">
|
||||
$highlighting-css$
|
||||
</style>
|
||||
$endif$
|
||||
$if(slidy-css)$
|
||||
<style type="text/css">
|
||||
$slidy-css$
|
||||
</style>
|
||||
$else$
|
||||
<link rel="stylesheet" type="text/css" media="screen, projection, print"
|
||||
href="http://www.w3.org/Talks/Tools/Slidy2/styles/slidy.css" />
|
||||
$endif$
|
||||
$for(css)$
|
||||
<link rel="stylesheet" type="text/css" media="screen, projection, print"
|
||||
href="$css$" />
|
||||
$endfor$
|
||||
$if(math)$
|
||||
$math$
|
||||
$endif$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
$if(slidy-js)$
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
$slidy-js$
|
||||
</script>
|
||||
$else$
|
||||
<script src="http://www.w3.org/Talks/Tools/Slidy2/scripts/slidy.js.gz"
|
||||
charset="utf-8" type="text/javascript"></script>
|
||||
$endif$
|
||||
$if(duration)$
|
||||
<meta name="duration" content="$duration$" />
|
||||
$endif$
|
||||
</head>
|
||||
<body>
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
$endfor$
|
||||
$if(title)$
|
||||
<div class="slide titlepage">
|
||||
<h1 class="title">$title$</h1>
|
||||
<p class="author">
|
||||
$for(author)$$author$$sep$<br/>$endfor$
|
||||
</p>
|
||||
$if(date)$
|
||||
<p class="date">$date$</p>
|
||||
$endif$
|
||||
</div>
|
||||
$endif$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
$endfor$
|
||||
</body>
|
||||
</html>
|
|
@ -1,64 +0,0 @@
|
|||
\input texinfo
|
||||
@documentencoding utf-8
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
|
||||
$if(strikeout)$
|
||||
@macro textstrikeout{text}
|
||||
~~\text\~~
|
||||
@end macro
|
||||
|
||||
$endif$
|
||||
$if(subscript)$
|
||||
@macro textsubscript{text}
|
||||
@iftex
|
||||
@textsubscript{\text\}
|
||||
@end iftex
|
||||
@ifnottex
|
||||
_@{\text\@}
|
||||
@end ifnottex
|
||||
@end macro
|
||||
|
||||
$endif$
|
||||
$if(superscript)$
|
||||
@macro textsuperscript{text}
|
||||
@iftex
|
||||
@textsuperscript{\text\}
|
||||
@end iftex
|
||||
@ifnottex
|
||||
^@{\text\@}
|
||||
@end ifnottex
|
||||
@end macro
|
||||
|
||||
$endif$
|
||||
@ifnottex
|
||||
@paragraphindent 0
|
||||
@end ifnottex
|
||||
$if(titlepage)$
|
||||
@titlepage
|
||||
@title $title$
|
||||
$for(author)$
|
||||
@author $author$
|
||||
$endfor$
|
||||
$if(date)$
|
||||
$date$
|
||||
$endif$
|
||||
@end titlepage
|
||||
|
||||
$endif$
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
|
||||
$endfor$
|
||||
$if(toc)$
|
||||
@contents
|
||||
|
||||
$endif$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
|
||||
$include-after$
|
||||
$endfor$
|
||||
|
||||
@bye
|
|
@ -1,9 +0,0 @@
|
|||
$for(include-before)$
|
||||
$include-before$
|
||||
|
||||
$endfor$
|
||||
$body$
|
||||
$for(include-after)$
|
||||
|
||||
$include-after$
|
||||
$endfor$
|
Loading…
Add table
Reference in a new issue