You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 KiB

title author email titleshort authorshort linkDir appendix abstract
Paperlighter Template Implementation Example {number 1} {name Author One} {correspond true} {affiliation My City University} {address Orenomachi, Orenoshi, Orenoken, Japan}] [{number 2} {name Author Two} {affiliation My Other City University} {address Hokanomachi, Orenoshi, Orenoken, Japan} xxx@myuni.ac.jp Paperlighter Example Author One et.al. [Figure Output] [appendix/1 appendix/2] Using \LaTeX{} to write papers is concise and convenient. However, for writing in life, complicated \LaTeX{} style-files (e.g., elegantpaper) are difficult to access, or submission style-files (e.g., journal or conference) are not free indeed. To tackle these problems and satisfy an elegant and straightforward scientific writing, \textbf{paperlighter.sty}, a one-column style-file, is designed. This document is edited from icml2022.sty and provides a basic paper template. Compared to icml2022.sty, paperlighter.sty contain fewer operations, reducing adjustment while keep graceful. \textbf{\textit{Notably, the paper's main content only describes the format of icml2022.sty. We place the content to show the actual effect of paperlighter.sty.}}

Format of the Paperlighter

Format of paperlighter is defined in this section.

Dimensions

The text of the paper has an overall width of 6.75\textasciitilde{}inches, and height of 9.0\textasciitilde{}inches. The left margin should be 0.75\textasciitilde{}inches and the top margin 1.0\textasciitilde{}inch (2.54\textasciitilde{}cm). The right and bottom margins will depend on whether you print on US letter or A4 paper, but all final versions must be produced for US letter size.

The paper body should be set in 10\textasciitilde{}point type with a vertical spacing of 11\textasciitilde{}points. Please use Times typeface throughout the text.

Title

The paper title should be set in 14\textasciitilde{}point bold type and centered between two horizontal rules that are 1\textasciitilde{}point thick, with 1.0\textasciitilde{}inch between the top rule and the top edge of the page. Capitalize the first letter of content words and put the rest of the title in lower case.

Author Information for Submission

Use \verb+\lighterauthor{...}+ to specify authors and \verb+\lighteraddress{...}+ to specify affiliations. (Read the TeX code used to produce this document for an example usage.) The author information will not be printed unless \texttt{accepted} is passed as an argument to the style file.

Abstract

The paper abstract should begin in the left column, 0.4\textasciitilde{}inches below the final address. The heading `Abstract’ should be centered, bold, and in 11\textasciitilde{}point type. The abstract body should use 10\textasciitilde{}point type, with a vertical spacing of 11\textasciitilde{}points, and should be indented 0.25\textasciitilde{}inches more than normal on left-hand and right-hand margins. Insert 0.4\textasciitilde{}inches of blank space after the body. Keep your abstract brief and self-contained, limiting it to one paragraph and roughly 4–6 sentences. Gross violations will require correction at the camera-ready phase.

Partitioning the Text

You should organize your paper into sections and paragraphs to help readers place a structure on the material and understand its contributions.

Sections and Subsections

Section headings should be numbered, flush left, and set in 11\textasciitilde{}pt bold type with the content words capitalized. Leave 0.25\textasciitilde{}inches of space before the heading and 0.15\textasciitilde{}inches after the heading.

Similarly, subsection headings should be numbered, flush left, and set in 10\textasciitilde{}pt bold type with the content words capitalized. Leave 0.2\textasciitilde{}inches of space before the heading and 0.13\textasciitilde{}inches afterward.

Finally, subsubsection headings should be numbered, flush left, and set in 10\textasciitilde{}pt small caps with the content words capitalized. Leave 0.18\textasciitilde{}inches of space before the heading and 0.1\textasciitilde{}inches after the heading.

Please use no more than three levels of headings.

Paragraphs and Footnotes

Within each section or subsection, you should further partition the paper into paragraphs. Do not indent the first line of a given paragraph, but insert a blank line between succeeding ones.

You can use footnotes\footnote{Footnotes should be complete sentences.} to provide readers with additional information about a topic without interrupting the flow of the paper. Indicate footnotes with a number in the text where the point is most relevant. Place the footnote in 9\textasciitilde{}point type at the bottom of the column in which it appears. Precede the first footnote in a column with a horizontal rule of 0.8\textasciitilde{}inches.\footnote{Multiple footnotes can appear in each column, in the same order as they appear in the text, but spread them across columns and pages if possible.}

\begin{figure}[ht] \vskip 0.2in \begin{center} \centerline{\includegraphics[width=\columnwidth]{Figure/icml_numpapers.eps}} \caption{Historical locations and number of accepted papers for International Machine Learning Conferences (ICML 1993 -- ICML 2008) and International Workshops on Machine Learning (ML 1988 -- ML 1992). At the time this figure was produced, the number of accepted papers for ICML 2008 was unknown and instead estimated.} \label{icml-historical} \end{center} \vskip -0.2in \end{figure}

Figures

You may want to include figures in the paper to illustrate your approach and results. Such artwork should be centered, legible, and separated from the text. Lines should be dark and at least 0.5\textasciitilde{}points thick for purposes of reproduction, and text should not appear on a gray background.

Label all distinct components of each figure. If the figure takes the form of a graph, then give a name for each axis and include a legend that briefly describes each curve. Do not include a title inside the figure; instead, the caption should serve this function.

Number figures sequentially, placing the figure number and caption \emph{after} the graphics, with at least 0.1\textasciitilde{}inches of space before the caption and 0.1\textasciitilde{}inches after it, as in \cref{icml-historical}. The figure caption should be set in 9\textasciitilde{}point type and centered unless it runs two or more lines, in which case it should be flush left. You may float figures to the top or bottom of a column, and you may set wide figures across both columns (use the environment \texttt{figure*} in \LaTeX). Always place two-column figures at the top or bottom of the page.

Algorithms

If you are using \LaTeX, please use the \texttt{algorithm\textquotesingle{}\textquotesingle{}\ and}algorithmic’’ environments to format pseudocode. These require the corresponding stylefiles, algorithm.sty and algorithmic.sty, which are supplied with this package. \cref{alg:example} shows an example.

\begin{algorithm}[tb] \caption{Bubble Sort} \label{alg:example} \begin{algorithmic} \STATE {\bfseries Input:} data $x_i$, size $m$ \REPEAT \STATE Initialize $noChange = true$. \FOR{$i=1$ {\bfseries to} $m-1$} \IF{$x_i > x_{i+1}$} \STATE Swap $x_i$ and $x_{i+1}$ \STATE $noChange = false$ \ENDIF \ENDFOR \UNTIL{$noChange$ is $true$} \end{algorithmic} \end{algorithm}

Tables

You may also want to include tables that summarize material. Like figures, these should be centered, legible, and numbered consecutively. However, place the title \emph{above} the table with at least 0.1\textasciitilde{}inches of space before the title and the same after it, as in \cref{sample-table}. The table title should be set in 9\textasciitilde{}point type and centered unless it runs two or more lines, in which case it should be flush left.

\begin{table}[t] \caption{Classification accuracies for naive Bayes and flexible Bayes on various data sets.} \label{sample-table} \vskip 0.15in \begin{center} \begin{small} \begin{sc} \begin{tabular}{lcccr} \toprule Data set & Naive & Flexible & Better? \ \midrule Breast & 95.9$\pm$ 0.2& 96.7$\pm$ 0.2& $\surd$ \ Cleveland & 83.3$\pm$ 0.6& 80.0$\pm$ 0.6& $\times$\ Glass2 & 61.9$\pm$ 1.4& 83.8$\pm$ 0.7& $\surd$ \ Credit & 74.8$\pm$ 0.5& 78.3$\pm$ 0.6& \ Horse & 73.3$\pm$ 0.9& 69.7$\pm$ 1.0& $\times$\ Meta & 67.1$\pm$ 0.6& 76.5$\pm$ 0.5& $\surd$ \ Pima & 75.1$\pm$ 0.6& 73.9$\pm$ 0.5& \ Vehicle & 44.9$\pm$ 0.6& 61.5$\pm$ 0.4& $\surd$ \ \bottomrule \end{tabular} \end{sc} \end{small} \end{center} \vskip -0.1in \end{table}

Tables contain textual material, whereas figures contain graphical material. Specify the contents of each row and column in the table’s topmost row. Again, you may float tables to a column’s top or bottom, and set wide tables across both columns. Place two-column tables at the top or bottom of the page.

Theorems and such

The preferred way is to number definitions, propositions, lemmas, etc. consecutively, within sections, as shown below.

\begin{definition} \label{def:inj} A function $f:X \to Y$ is injective if for any $x,y\in X$ different, $f(x)\ne f(y)$. \end{definition}

Using \cref{def:inj} we immediate get the following result:

\begin{proposition} If $f$ is injective mapping a set $X$ to another set $Y$, the cardinality of $Y$ is at least as large as that of $X$ \end{proposition} \begin{proof} Left as an exercise to the reader. \end{proof}

\cref{lem:usefullemma} stated next will prove to be useful.

\begin{lemma} \label{lem:usefullemma} For any $f:X \to Y$ and $g:Y\to Z$ injective functions, $f \circ g$ is injective. \end{lemma} \begin{theorem} \label{thm:bigtheorem} If $f:X\to Y$ is bijective, the cardinality of $X$ and $Y$ are the same. \end{theorem}

An easy corollary of \cref{thm:bigtheorem} is the following:

\begin{corollary} If $f:X\to Y$ is bijective, the cardinality of $X$ is at least as large as that of $Y$. \end{corollary} \begin{assumption} The set $X$ is finite. \label{ass:xfinite} \end{assumption} \begin{remark} According to some, it is only the finite case (cf. \cref{ass:xfinite}) that is interesting. \end{remark}

Citations and References

If you rely on the \LaTeX{} bibliographic facility, use \texttt{natbib.sty} included in the style-file package to obtain reference.

Citations within the text should include the authors’ last names and year. If the authors’ names are included in the sentence, place only the year in parentheses, for example when referencing Arthur Samuel’s pioneering work \yrcite{Samuel59}. Otherwise place the entire reference in parentheses with the authors and year separated by a comma \cite{Samuel59}. List multiple references separated by semicolons \cite{kearns89,Samuel59,mitchell80}. Use the `et\textasciitilde{}al.’ construct only for citations with three or more authors or after listing all authors to a publication in an earlier reference \cite{MachineLearningI}.

Use an unnumbered first-level section heading for the references, and use a hanging indent style, with the first line of the reference flush against the left margin and subsequent lines indented by 10 points. The references at the end of this document give examples for journal articles \cite{Samuel59}, conference publications \cite{langley00}, book chapters \cite{Newell81}, books \cite{DudaHart2nd}, edited volumes \cite{MachineLearningI}, technical reports \cite{mitchell80}, and dissertations \cite{kearns89}.

Alphabetize references by the surnames of the first authors, with single author entries preceding multiple author entries. Order references for the same authors by year of publication, with the earliest first. Make sure that each reference includes all relevant information (e.g., page numbers).

Please put some effort into making references complete, presentable, and consistent, e.g.~use the actual current name of authors. If using bibtex, please protect capital letters of names and abbreviations in titles, for example, use {B}ayesian or {L}ipschitz in your .bib file.

Acknowledgements

Acknowledgements is an unnumbered section at the end of the paper. Typically, this will include thanks to colleagues who contributed to the ideas, and to funding agencies and corporate sponsors that provided financial support.