summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/jmlr/sample-books/paper1
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/jmlr/sample-books/paper1
Initial commit
Diffstat (limited to 'macros/latex/contrib/jmlr/sample-books/paper1')
-rw-r--r--macros/latex/contrib/jmlr/sample-books/paper1/paper1.bib19
-rw-r--r--macros/latex/contrib/jmlr/sample-books/paper1/paper1.tex98
2 files changed, 117 insertions, 0 deletions
diff --git a/macros/latex/contrib/jmlr/sample-books/paper1/paper1.bib b/macros/latex/contrib/jmlr/sample-books/paper1/paper1.bib
new file mode 100644
index 0000000000..ddc24c6662
--- /dev/null
+++ b/macros/latex/contrib/jmlr/sample-books/paper1/paper1.bib
@@ -0,0 +1,19 @@
+@article{guyon-elisseeff-03,
+ title = "An Introduction to Variable and Feature Selection",
+ author = "I. Guyon and A. Elisseeff",
+ journal = "JMLR",
+ volume = "3",
+ month = MAR,
+ pages = "1157-1182",
+ year = 2003
+}
+
+@techreport{guyon2007causalreport,
+ author = {I. Guyon and C. Aliferis and A. Elisseeff},
+ title = {Causal Feature Selection},
+ institution = {Clopinet},
+ year = 2007,
+ type = {Technical Report },
+ source = {\url{http://clopinet.com/isabelle/Papers/causalFS.pdf}}
+}
+
diff --git a/macros/latex/contrib/jmlr/sample-books/paper1/paper1.tex b/macros/latex/contrib/jmlr/sample-books/paper1/paper1.tex
new file mode 100644
index 0000000000..bab6242527
--- /dev/null
+++ b/macros/latex/contrib/jmlr/sample-books/paper1/paper1.tex
@@ -0,0 +1,98 @@
+% This file is public domain
+
+\documentclass[wcp]{jmlr}
+
+\usepackage{lipsum}% Provides dummy text for this example
+
+\newcommand{\samplecommand}{\emph{A sample command}}
+
+\jmlrvolume{42}
+\jmlryear{2010}
+\jmlrworkshop{Workshop on Causality}
+
+\title[Article 1]{First Sample Article}
+
+\author{\Name{Jane Doe}\Email{jd@sample.com}\and
+\Name{John {Smith Jones}}\Email{jsj@sample.com}\\
+\addr{University of No Where}}
+
+\editor{Anne Editor}
+
+\begin{document}
+\maketitle
+
+\begin{abstract}
+This abstract has a citation \citep{guyon-elisseeff-03}.
+\lipsum[1]
+\end{abstract}
+\begin{keywords}
+Sample
+\end{keywords}
+
+\section{Introduction}
+
+This is a sample article. \sectionref{sec:method} discusses
+the method used. \equationref{eq:emc2} is an interesting
+equation. The results are discussed in \sectionref{sec:results}
+and some other stuff is in \appendixref{apd:first}.\footnote{Here's
+a footnote.}
+\samplecommand.
+
+\lipsum
+
+\section{Method}\label{sec:method}
+
+\lipsum
+
+\begin{equation}\label{eq:emc2}
+E = mc^2
+\end{equation}
+
+A network is shown in Figure~\ref{fig:network}.
+
+\begin{figure}[htbp]
+ \floatconts
+ {fig:network}%
+ {\caption{A Network}}%
+ {\includegraphics{images/network}}%
+\end{figure}
+
+\section{Results}\label{sec:results}
+
+\begin{table}[htbp]
+\floatconts
+ {tab:sample}
+ {\caption{A Sample Table}}
+ {%
+ \begin{tabular}{cc}
+ A & B\\
+ 1 & 2
+ \end{tabular}
+ }%
+\end{table}
+
+\begin{table}[htbp]
+\floatconts
+ {tab:sample2}
+ {\caption{Another Sample Table}}
+ {%
+ \begin{tabular}{cc}
+ A & B\\
+ 1 & 2
+ \end{tabular}
+ }%
+\end{table}
+
+\lipsum
+
+Here are some citations:
+\citet{guyon-elisseeff-03,guyon2007causalreport}.\footnote{And
+here's another footnote.}
+
+\bibliography{paper1}
+
+\appendix
+\section{First Appendix}\label{apd:first}
+
+\lipsum
+\end{document}