Skip to content

Commit c3bbe40

Browse files
Setting up LaTeX format.
1 parent ca49492 commit c3bbe40

File tree

6 files changed

+4389
-0
lines changed

6 files changed

+4389
-0
lines changed

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## IntelliJ IDEA
2+
15-02.iml
3+
.idea
4+
5+
16
## Core latex/pdflatex auxiliary files:
27
*.aux
38
*.lof
@@ -10,11 +15,17 @@
1015
## Intermediate documents:
1116
*.dvi
1217
*-converted-to.*
18+
*.make
19+
*.d
20+
*.spl
21+
*.temp
22+
1323
# these rules might exclude image files for figures etc.
1424
# *.ps
1525
# *.eps
1626
# *.pdf
1727

28+
1829
## Bibliography auxiliary files (bibtex/biblatex/biber):
1930
*.bbl
2031
*.bcf

15-02.pdf

57.8 KB
Binary file not shown.

15-02.tex

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
\documentclass[preprint,12pt]{elsarticle}
2+
3+
%% Use the option review to obtain double line spacing
4+
%% \documentclass[authoryear,preprint,review,12pt]{elsarticle}
5+
6+
%% Use the options 1p,twocolumn; 3p; 3p,twocolumn; 5p; or 5p,twocolumn
7+
%% for a journal layout:
8+
%% \documentclass[final,1p,times]{elsarticle}
9+
%% \documentclass[final,1p,times,twocolumn]{elsarticle}
10+
%% \documentclass[final,3p,times]{elsarticle}
11+
%% \documentclass[final,3p,times,twocolumn]{elsarticle}
12+
%% \documentclass[final,5p,times]{elsarticle}
13+
%% \documentclass[final,5p,times,twocolumn]{elsarticle}
14+
15+
%% For including figures, graphicx.sty has been loaded in
16+
%% elsarticle.cls. If you prefer to use the old commands
17+
%% please give \usepackage{epsfig}
18+
19+
%% The amssymb package provides various useful mathematical symbols
20+
\usepackage{amssymb}
21+
%% The amsthm package provides extended theorem environments
22+
%% \usepackage{amsthm}
23+
24+
%% The lineno packages adds line numbers. Start line numbering with
25+
%% \begin{linenumbers}, end it with \end{linenumbers}. Or switch it on
26+
%% for the whole article with \linenumbers.
27+
%% \usepackage{lineno}
28+
29+
\journal{Sustainable Computing}
30+
31+
\begin{document}
32+
33+
\begin{frontmatter}
34+
35+
%% Title, authors and addresses
36+
37+
%% use the tnoteref command within \title for footnotes;
38+
%% use the tnotetext command for theassociated footnote;
39+
%% use the fnref command within \author or \address for footnotes;
40+
%% use the fntext command for theassociated footnote;
41+
%% use the corref command within \author for corresponding author footnotes;
42+
%% use the cortext command for theassociated footnote;
43+
%% use the ead command for the email address,
44+
%% and the form \ead[url] for the home page:
45+
%% \title{Title\tnoteref{label1}}
46+
%% \tnotetext[label1]{}
47+
%% \author{Name\corref{cor1}\fnref{label2}}
48+
%% \ead{email address}
49+
%% \ead[url]{home page}
50+
%% \fntext[label2]{}
51+
%% \cortext[cor1]{}
52+
%% \address{Address\fnref{label3}}
53+
%% \fntext[label3]{}
54+
55+
\title{Design and Implementation of WattDepot: An open source enterprise service for collection, storage, and analysis of energy data}
56+
57+
%% use optional labels to link authors explicitly to addresses:
58+
%% \author[label1,label2]{}
59+
%% \address[label1]{}
60+
%% \address[label2]{}
61+
62+
63+
\author{Philip M. Johnson}
64+
\address{Information and Computer Sciences, University of Hawaii, Honolulu, HI 96822 USA}
65+
66+
\begin{abstract}
67+
68+
Abstract goes here.
69+
70+
\end{abstract}
71+
72+
\begin{keyword}
73+
74+
energy \sep open source
75+
76+
%% PACS codes here, in the form: \PACS code \sep code
77+
78+
%% MSC codes here, in the form: \MSC code \sep code
79+
%% or \MSC[2008] code \sep code (2000 is the default)
80+
81+
\end{keyword}
82+
83+
\end{frontmatter}
84+
85+
%% \linenumbers
86+
87+
%% main text
88+
\section{Introduction}
89+
\label{sec:introduction}
90+
91+
Energy is really important.
92+
93+
94+
95+
\bibliographystyle{elsarticle-num}
96+
\bibliography{csdl-trs}
97+
98+
\end{document}
99+
\endinput
100+

0 commit comments

Comments
 (0)