comparison bare_jrnl_compsoc.tex @ 0:8319d82cab07

add files
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Sun, 28 Feb 2016 21:41:40 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:8319d82cab07
1
2 %% bare_jrnl_compsoc.tex
3 %% V1.4a
4 %% 2014/09/17
5 %% by Michael Shell
6 %% See:
7 %% http://www.michaelshell.org/
8 %% for current contact information.
9 %%
10 %% This is a skeleton file demonstrating the use of IEEEtran.cls
11 %% (requires IEEEtran.cls version 1.8a or later) with an IEEE
12 %% Computer Society journal paper.
13 %%
14 %% Support sites:
15 %% http://www.michaelshell.org/tex/ieeetran/
16 %% http://www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran/
17 %% and
18 %% http://www.ieee.org/
19
20 %%*************************************************************************
21 %% Legal Notice:
22 %% This code is offered as-is without any warranty either expressed or
23 %% implied; without even the implied warranty of MERCHANTABILITY or
24 %% FITNESS FOR A PARTICULAR PURPOSE!
25 %% User assumes all risk.
26 %% In no event shall IEEE or any contributor to this code be liable for
27 %% any damages or losses, including, but not limited to, incidental,
28 %% consequential, or any other damages, resulting from the use or misuse
29 %% of any information contained here.
30 %%
31 %% All comments are the opinions of their respective authors and are not
32 %% necessarily endorsed by the IEEE.
33 %%
34 %% This work is distributed under the LaTeX Project Public License (LPPL)
35 %% ( http://www.latex-project.org/ ) version 1.3, and may be freely used,
36 %% distributed and modified. A copy of the LPPL, version 1.3, is included
37 %% in the base LaTeX documentation of all distributions of LaTeX released
38 %% 2003/12/01 or later.
39 %% Retain all contribution notices and credits.
40 %% ** Modified files should be clearly indicated as such, including **
41 %% ** renaming them and changing author support contact information. **
42 %%
43 %% File list of work: IEEEtran.cls, IEEEtran_HOWTO.pdf, bare_adv.tex,
44 %% bare_conf.tex, bare_jrnl.tex, bare_conf_compsoc.tex,
45 %% bare_jrnl_compsoc.tex, bare_jrnl_transmag.tex
46 %%*************************************************************************
47
48
49 % *** Authors should verify (and, if needed, correct) their LaTeX system ***
50 % *** with the testflow diagnostic prior to trusting their LaTeX platform ***
51 % *** with production work. IEEE's font choices and paper sizes can ***
52 % *** trigger bugs that do not appear when using other class files. *** ***
53 % The testflow support page is at:
54 % http://www.michaelshell.org/tex/testflow/
55
56
57 \documentclass[10pt,journal,compsoc]{IEEEtran}
58 %
59 % If IEEEtran.cls has not been installed into the LaTeX system files,
60 % manually specify the path to it like:
61 % \documentclass[10pt,journal,compsoc]{../sty/IEEEtran}
62
63
64
65
66
67 % Some very useful LaTeX packages include:
68 % (uncomment the ones you want to load)
69
70
71 % *** MISC UTILITY PACKAGES ***
72 %
73 %\usepackage{ifpdf}
74 % Heiko Oberdiek's ifpdf.sty is very useful if you need conditional
75 % compilation based on whether the output is pdf or dvi.
76 % usage:
77 % \ifpdf
78 % % pdf code
79 % \else
80 % % dvi code
81 % \fi
82 % The latest version of ifpdf.sty can be obtained from:
83 % http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/
84 % Also, note that IEEEtran.cls V1.7 and later provides a builtin
85 % \ifCLASSINFOpdf conditional that works the same way.
86 % When switching from latex to pdflatex and vice-versa, the compiler may
87 % have to be run twice to clear warning/error messages.
88
89
90
91
92
93
94 % *** CITATION PACKAGES ***
95 %
96 \ifCLASSOPTIONcompsoc
97 % IEEE Computer Society needs nocompress option
98 % requires cite.sty v4.0 or later (November 2003)
99 \usepackage[nocompress]{cite}
100 \else
101 % normal IEEE
102 \usepackage{cite}
103 \fi
104 % cite.sty was written by Donald Arseneau
105 % V1.6 and later of IEEEtran pre-defines the format of the cite.sty package
106 % \cite{} output to follow that of IEEE. Loading the cite package will
107 % result in citation numbers being automatically sorted and properly
108 % "compressed/ranged". e.g., [1], [9], [2], [7], [5], [6] without using
109 % cite.sty will become [1], [2], [5]--[7], [9] using cite.sty. cite.sty's
110 % \cite will automatically add leading space, if needed. Use cite.sty's
111 % noadjust option (cite.sty V3.8 and later) if you want to turn this off
112 % such as if a citation ever needs to be enclosed in parenthesis.
113 % cite.sty is already installed on most LaTeX systems. Be sure and use
114 % version 5.0 (2009-03-20) and later if using hyperref.sty.
115 % The latest version can be obtained at:
116 % http://www.ctan.org/tex-archive/macros/latex/contrib/cite/
117 % The documentation is contained in the cite.sty file itself.
118 %
119 % Note that some packages require special options to format as the Computer
120 % Society requires. In particular, Computer Society papers do not use
121 % compressed citation ranges as is done in typical IEEE papers
122 % (e.g., [1]-[4]). Instead, they list every citation separately in order
123 % (e.g., [1], [2], [3], [4]). To get the latter we need to load the cite
124 % package with the nocompress option which is supported by cite.sty v4.0
125 % and later. Note also the use of a CLASSOPTION conditional provided by
126 % IEEEtran.cls V1.7 and later.
127
128
129
130
131
132 % *** GRAPHICS RELATED PACKAGES ***
133 %
134 \ifCLASSINFOpdf
135 % \usepackage[pdftex]{graphicx}
136 % declare the path(s) where your graphic files are
137 % \graphicspath{{../pdf/}{../jpeg/}}
138 % and their extensions so you won't have to specify these with
139 % every instance of \includegraphics
140 % \DeclareGraphicsExtensions{.pdf,.jpeg,.png}
141 \else
142 % or other class option (dvipsone, dvipdf, if not using dvips). graphicx
143 % will default to the driver specified in the system graphics.cfg if no
144 % driver is specified.
145 % \usepackage[dvips]{graphicx}
146 % declare the path(s) where your graphic files are
147 % \graphicspath{{../eps/}}
148 % and their extensions so you won't have to specify these with
149 % every instance of \includegraphics
150 % \DeclareGraphicsExtensions{.eps}
151 \fi
152 % graphicx was written by David Carlisle and Sebastian Rahtz. It is
153 % required if you want graphics, photos, etc. graphicx.sty is already
154 % installed on most LaTeX systems. The latest version and documentation
155 % can be obtained at:
156 % http://www.ctan.org/tex-archive/macros/latex/required/graphics/
157 % Another good source of documentation is "Using Imported Graphics in
158 % LaTeX2e" by Keith Reckdahl which can be found at:
159 % http://www.ctan.org/tex-archive/info/epslatex/
160 %
161 % latex, and pdflatex in dvi mode, support graphics in encapsulated
162 % postscript (.eps) format. pdflatex in pdf mode supports graphics
163 % in .pdf, .jpeg, .png and .mps (metapost) formats. Users should ensure
164 % that all non-photo figures use a vector format (.eps, .pdf, .mps) and
165 % not a bitmapped formats (.jpeg, .png). IEEE frowns on bitmapped formats
166 % which can result in "jaggedy"/blurry rendering of lines and letters as
167 % well as large increases in file sizes.
168 %
169 % You can find documentation about the pdfTeX application at:
170 % http://www.tug.org/applications/pdftex
171
172
173
174
175
176
177 % *** MATH PACKAGES ***
178 %
179 %\usepackage[cmex10]{amsmath}
180 % A popular package from the American Mathematical Society that provides
181 % many useful and powerful commands for dealing with mathematics. If using
182 % it, be sure to load this package with the cmex10 option to ensure that
183 % only type 1 fonts will utilized at all point sizes. Without this option,
184 % it is possible that some math symbols, particularly those within
185 % footnotes, will be rendered in bitmap form which will result in a
186 % document that can not be IEEE Xplore compliant!
187 %
188 % Also, note that the amsmath package sets \interdisplaylinepenalty to 10000
189 % thus preventing page breaks from occurring within multiline equations. Use:
190 %\interdisplaylinepenalty=2500
191 % after loading amsmath to restore such page breaks as IEEEtran.cls normally
192 % does. amsmath.sty is already installed on most LaTeX systems. The latest
193 % version and documentation can be obtained at:
194 % http://www.ctan.org/tex-archive/macros/latex/required/amslatex/math/
195
196
197
198
199
200 % *** SPECIALIZED LIST PACKAGES ***
201 %
202 %\usepackage{algorithmic}
203 % algorithmic.sty was written by Peter Williams and Rogerio Brito.
204 % This package provides an algorithmic environment fo describing algorithms.
205 % You can use the algorithmic environment in-text or within a figure
206 % environment to provide for a floating algorithm. Do NOT use the algorithm
207 % floating environment provided by algorithm.sty (by the same authors) or
208 % algorithm2e.sty (by Christophe Fiorio) as IEEE does not use dedicated
209 % algorithm float types and packages that provide these will not provide
210 % correct IEEE style captions. The latest version and documentation of
211 % algorithmic.sty can be obtained at:
212 % http://www.ctan.org/tex-archive/macros/latex/contrib/algorithms/
213 % There is also a support site at:
214 % http://algorithms.berlios.de/index.html
215 % Also of interest may be the (relatively newer and more customizable)
216 % algorithmicx.sty package by Szasz Janos:
217 % http://www.ctan.org/tex-archive/macros/latex/contrib/algorithmicx/
218
219
220
221
222 % *** ALIGNMENT PACKAGES ***
223 %
224 %\usepackage{array}
225 % Frank Mittelbach's and David Carlisle's array.sty patches and improves
226 % the standard LaTeX2e array and tabular environments to provide better
227 % appearance and additional user controls. As the default LaTeX2e table
228 % generation code is lacking to the point of almost being broken with
229 % respect to the quality of the end results, all users are strongly
230 % advised to use an enhanced (at the very least that provided by array.sty)
231 % set of table tools. array.sty is already installed on most systems. The
232 % latest version and documentation can be obtained at:
233 % http://www.ctan.org/tex-archive/macros/latex/required/tools/
234
235
236 % IEEEtran contains the IEEEeqnarray family of commands that can be used to
237 % generate multiline equations as well as matrices, tables, etc., of high
238 % quality.
239
240
241
242
243 % *** SUBFIGURE PACKAGES ***
244 %\ifCLASSOPTIONcompsoc
245 % \usepackage[caption=false,font=footnotesize,labelfont=sf,textfont=sf]{subfig}
246 %\else
247 % \usepackage[caption=false,font=footnotesize]{subfig}
248 %\fi
249 % subfig.sty, written by Steven Douglas Cochran, is the modern replacement
250 % for subfigure.sty, the latter of which is no longer maintained and is
251 % incompatible with some LaTeX packages including fixltx2e. However,
252 % subfig.sty requires and automatically loads Axel Sommerfeldt's caption.sty
253 % which will override IEEEtran.cls' handling of captions and this will result
254 % in non-IEEE style figure/table captions. To prevent this problem, be sure
255 % and invoke subfig.sty's "caption=false" package option (available since
256 % subfig.sty version 1.3, 2005/06/28) as this is will preserve IEEEtran.cls
257 % handling of captions.
258 % Note that the Computer Society format requires a sans serif font rather
259 % than the serif font used in traditional IEEE formatting and thus the need
260 % to invoke different subfig.sty package options depending on whether
261 % compsoc mode has been enabled.
262 %
263 % The latest version and documentation of subfig.sty can be obtained at:
264 % http://www.ctan.org/tex-archive/macros/latex/contrib/subfig/
265
266
267
268
269 % *** FLOAT PACKAGES ***
270 %
271 %\usepackage{fixltx2e}
272 % fixltx2e, the successor to the earlier fix2col.sty, was written by
273 % Frank Mittelbach and David Carlisle. This package corrects a few problems
274 % in the LaTeX2e kernel, the most notable of which is that in current
275 % LaTeX2e releases, the ordering of single and double column floats is not
276 % guaranteed to be preserved. Thus, an unpatched LaTeX2e can allow a
277 % single column figure to be placed prior to an earlier double column
278 % figure. The latest version and documentation can be found at:
279 % http://www.ctan.org/tex-archive/macros/latex/base/
280
281
282 %\usepackage{stfloats}
283 % stfloats.sty was written by Sigitas Tolusis. This package gives LaTeX2e
284 % the ability to do double column floats at the bottom of the page as well
285 % as the top. (e.g., "\begin{figure*}[!b]" is not normally possible in
286 % LaTeX2e). It also provides a command:
287 %\fnbelowfloat
288 % to enable the placement of footnotes below bottom floats (the standard
289 % LaTeX2e kernel puts them above bottom floats). This is an invasive package
290 % which rewrites many portions of the LaTeX2e float routines. It may not work
291 % with other packages that modify the LaTeX2e float routines. The latest
292 % version and documentation can be obtained at:
293 % http://www.ctan.org/tex-archive/macros/latex/contrib/sttools/
294 % Do not use the stfloats baselinefloat ability as IEEE does not allow
295 % \baselineskip to stretch. Authors submitting work to the IEEE should note
296 % that IEEE rarely uses double column equations and that authors should try
297 % to avoid such use. Do not be tempted to use the cuted.sty or midfloat.sty
298 % packages (also by Sigitas Tolusis) as IEEE does not format its papers in
299 % such ways.
300 % Do not attempt to use stfloats with fixltx2e as they are incompatible.
301 % Instead, use Morten Hogholm'a dblfloatfix which combines the features
302 % of both fixltx2e and stfloats:
303 %
304 % \usepackage{dblfloatfix}
305 % The latest version can be found at:
306 % http://www.ctan.org/tex-archive/macros/latex/contrib/dblfloatfix/
307
308
309
310
311 %\ifCLASSOPTIONcaptionsoff
312 % \usepackage[nomarkers]{endfloat}
313 % \let\MYoriglatexcaption\caption
314 % \renewcommand{\caption}[2][\relax]{\MYoriglatexcaption[#2]{#2}}
315 %\fi
316 % endfloat.sty was written by James Darrell McCauley, Jeff Goldberg and
317 % Axel Sommerfeldt. This package may be useful when used in conjunction with
318 % IEEEtran.cls' captionsoff option. Some IEEE journals/societies require that
319 % submissions have lists of figures/tables at the end of the paper and that
320 % figures/tables without any captions are placed on a page by themselves at
321 % the end of the document. If needed, the draftcls IEEEtran class option or
322 % \CLASSINPUTbaselinestretch interface can be used to increase the line
323 % spacing as well. Be sure and use the nomarkers option of endfloat to
324 % prevent endfloat from "marking" where the figures would have been placed
325 % in the text. The two hack lines of code above are a slight modification of
326 % that suggested by in the endfloat docs (section 8.4.1) to ensure that
327 % the full captions always appear in the list of figures/tables - even if
328 % the user used the short optional argument of \caption[]{}.
329 % IEEE papers do not typically make use of \caption[]'s optional argument,
330 % so this should not be an issue. A similar trick can be used to disable
331 % captions of packages such as subfig.sty that lack options to turn off
332 % the subcaptions:
333 % For subfig.sty:
334 % \let\MYorigsubfloat\subfloat
335 % \renewcommand{\subfloat}[2][\relax]{\MYorigsubfloat[]{#2}}
336 % However, the above trick will not work if both optional arguments of
337 % the \subfloat command are used. Furthermore, there needs to be a
338 % description of each subfigure *somewhere* and endfloat does not add
339 % subfigure captions to its list of figures. Thus, the best approach is to
340 % avoid the use of subfigure captions (many IEEE journals avoid them anyway)
341 % and instead reference/explain all the subfigures within the main caption.
342 % The latest version of endfloat.sty and its documentation can obtained at:
343 % http://www.ctan.org/tex-archive/macros/latex/contrib/endfloat/
344 %
345 % The IEEEtran \ifCLASSOPTIONcaptionsoff conditional can also be used
346 % later in the document, say, to conditionally put the References on a
347 % page by themselves.
348
349
350
351
352 % *** PDF, URL AND HYPERLINK PACKAGES ***
353 %
354 %\usepackage{url}
355 % url.sty was written by Donald Arseneau. It provides better support for
356 % handling and breaking URLs. url.sty is already installed on most LaTeX
357 % systems. The latest version and documentation can be obtained at:
358 % http://www.ctan.org/tex-archive/macros/latex/contrib/url/
359 % Basically, \url{my_url_here}.
360
361
362
363
364
365 % *** Do not adjust lengths that control margins, column widths, etc. ***
366 % *** Do not use packages that alter fonts (such as pslatex). ***
367 % There should be no need to do such things with IEEEtran.cls V1.6 and later.
368 % (Unless specifically asked to do so by the journal or conference you plan
369 % to submit to, of course. )
370
371
372 % correct bad hyphenation here
373 \hyphenation{op-tical net-works semi-conduc-tor}
374
375
376 \begin{document}
377 %
378 % paper title
379 % Titles are generally capitalized except for words such as a, an, and, as,
380 % at, but, by, for, in, nor, of, on, or, the, to and up, which are usually
381 % not capitalized unless they are the first or last word of the title.
382 % Linebreaks \\ can be used within to get better formatting as desired.
383 % Do not put math or special symbols in the title.
384 \title{Bare Demo of IEEEtran.cls\\ for Computer Society Journals}
385 %
386 %
387 % author names and IEEE memberships
388 % note positions of commas and nonbreaking spaces ( ~ ) LaTeX will not break
389 % a structure at a ~ so this keeps an author's name from being broken across
390 % two lines.
391 % use \thanks{} to gain access to the first footnote area
392 % a separate \thanks must be used for each paragraph as LaTeX2e's \thanks
393 % was not built to handle multiple paragraphs
394 %
395 %
396 %\IEEEcompsocitemizethanks is a special \thanks that produces the bulleted
397 % lists the Computer Society journals use for "first footnote" author
398 % affiliations. Use \IEEEcompsocthanksitem which works much like \item
399 % for each affiliation group. When not in compsoc mode,
400 % \IEEEcompsocitemizethanks becomes like \thanks and
401 % \IEEEcompsocthanksitem becomes a line break with idention. This
402 % facilitates dual compilation, although admittedly the differences in the
403 % desired content of \author between the different types of papers makes a
404 % one-size-fits-all approach a daunting prospect. For instance, compsoc
405 % journal papers have the author affiliations above the "Manuscript
406 % received ..." text while in non-compsoc journals this is reversed. Sigh.
407
408 \author{Michael~Shell,~\IEEEmembership{Member,~IEEE,}
409 John~Doe,~\IEEEmembership{Fellow,~OSA,}
410 and~Jane~Doe,~\IEEEmembership{Life~Fellow,~IEEE}% <-this % stops a space
411 \IEEEcompsocitemizethanks{\IEEEcompsocthanksitem M. Shell is with the Department
412 of Electrical and Computer Engineering, Georgia Institute of Technology, Atlanta,
413 GA, 30332.\protect\\
414 % note need leading \protect in front of \\ to get a newline within \thanks as
415 % \\ is fragile and will error, could use \hfil\break instead.
416 E-mail: see http://www.michaelshell.org/contact.html
417 \IEEEcompsocthanksitem J. Doe and J. Doe are with Anonymous University.}% <-this % stops an unwanted space
418 \thanks{Manuscript received April 19, 2005; revised September 17, 2014.}}
419
420 % note the % following the last \IEEEmembership and also \thanks -
421 % these prevent an unwanted space from occurring between the last author name
422 % and the end of the author line. i.e., if you had this:
423 %
424 % \author{....lastname \thanks{...} \thanks{...} }
425 % ^------------^------------^----Do not want these spaces!
426 %
427 % a space would be appended to the last name and could cause every name on that
428 % line to be shifted left slightly. This is one of those "LaTeX things". For
429 % instance, "\textbf{A} \textbf{B}" will typeset as "A B" not "AB". To get
430 % "AB" then you have to do: "\textbf{A}\textbf{B}"
431 % \thanks is no different in this regard, so shield the last } of each \thanks
432 % that ends a line with a % and do not let a space in before the next \thanks.
433 % Spaces after \IEEEmembership other than the last one are OK (and needed) as
434 % you are supposed to have spaces between the names. For what it is worth,
435 % this is a minor point as most people would not even notice if the said evil
436 % space somehow managed to creep in.
437
438
439
440 % The paper headers
441 \markboth{Journal of \LaTeX\ Class Files,~Vol.~13, No.~9, September~2014}%
442 {Shell \MakeLowercase{\textit{et al.}}: Bare Demo of IEEEtran.cls for Computer Society Journals}
443 % The only time the second header will appear is for the odd numbered pages
444 % after the title page when using the twoside option.
445 %
446 % *** Note that you probably will NOT want to include the author's ***
447 % *** name in the headers of peer review papers. ***
448 % You can use \ifCLASSOPTIONpeerreview for conditional compilation here if
449 % you desire.
450
451
452
453 % The publisher's ID mark at the bottom of the page is less important with
454 % Computer Society journal papers as those publications place the marks
455 % outside of the main text columns and, therefore, unlike regular IEEE
456 % journals, the available text space is not reduced by their presence.
457 % If you want to put a publisher's ID mark on the page you can do it like
458 % this:
459 %\IEEEpubid{0000--0000/00\$00.00~\copyright~2014 IEEE}
460 % or like this to get the Computer Society new two part style.
461 %\IEEEpubid{\makebox[\columnwidth]{\hfill 0000--0000/00/\$00.00~\copyright~2014 IEEE}%
462 %\hspace{\columnsep}\makebox[\columnwidth]{Published by the IEEE Computer Society\hfill}}
463 % Remember, if you use this you must call \IEEEpubidadjcol in the second
464 % column for its text to clear the IEEEpubid mark (Computer Society jorunal
465 % papers don't need this extra clearance.)
466
467
468
469 % use for special paper notices
470 %\IEEEspecialpapernotice{(Invited Paper)}
471
472
473
474 % for Computer Society papers, we must declare the abstract and index terms
475 % PRIOR to the title within the \IEEEtitleabstractindextext IEEEtran
476 % command as these need to go into the title area created by \maketitle.
477 % As a general rule, do not put math, special symbols or citations
478 % in the abstract or keywords.
479 \IEEEtitleabstractindextext{%
480 \begin{abstract}
481 The abstract goes here.
482 \end{abstract}
483
484 % Note that keywords are not normally used for peerreview papers.
485 \begin{IEEEkeywords}
486 Computer Society, IEEEtran, journal, \LaTeX, paper, template.
487 \end{IEEEkeywords}}
488
489
490 % make the title area
491 \maketitle
492
493
494 % To allow for easy dual compilation without having to reenter the
495 % abstract/keywords data, the \IEEEtitleabstractindextext text will
496 % not be used in maketitle, but will appear (i.e., to be "transported")
497 % here as \IEEEdisplaynontitleabstractindextext when the compsoc
498 % or transmag modes are not selected <OR> if conference mode is selected
499 % - because all conference papers position the abstract like regular
500 % papers do.
501 \IEEEdisplaynontitleabstractindextext
502 % \IEEEdisplaynontitleabstractindextext has no effect when using
503 % compsoc or transmag under a non-conference mode.
504
505
506
507 % For peer review papers, you can put extra information on the cover
508 % page as needed:
509 % \ifCLASSOPTIONpeerreview
510 % \begin{center} \bfseries EDICS Category: 3-BBND \end{center}
511 % \fi
512 %
513 % For peerreview papers, this IEEEtran command inserts a page break and
514 % creates the second title. It will be ignored for other modes.
515 \IEEEpeerreviewmaketitle
516
517
518
519 \IEEEraisesectionheading{\section{Introduction}\label{sec:introduction}}
520 % Computer Society journal (but not conference!) papers do something unusual
521 % with the very first section heading (almost always called "Introduction").
522 % They place it ABOVE the main text! IEEEtran.cls does not automatically do
523 % this for you, but you can achieve this effect with the provided
524 % \IEEEraisesectionheading{} command. Note the need to keep any \label that
525 % is to refer to the section immediately after \section in the above as
526 % \IEEEraisesectionheading puts \section within a raised box.
527
528
529
530
531 % The very first letter is a 2 line initial drop letter followed
532 % by the rest of the first word in caps (small caps for compsoc).
533 %
534 % form to use if the first word consists of a single letter:
535 % \IEEEPARstart{A}{demo} file is ....
536 %
537 % form to use if you need the single drop letter followed by
538 % normal text (unknown if ever used by IEEE):
539 % \IEEEPARstart{A}{}demo file is ....
540 %
541 % Some journals put the first two words in caps:
542 % \IEEEPARstart{T}{his demo} file is ....
543 %
544 % Here we have the typical use of a "T" for an initial drop letter
545 % and "HIS" in caps to complete the first word.
546 \IEEEPARstart{T}{his} demo file is intended to serve as a ``starter file''
547 for IEEE Computer Society journal papers produced under \LaTeX\ using
548 IEEEtran.cls version 1.8a and later.
549 % You must have at least 2 lines in the paragraph with the drop letter
550 % (should never be an issue)
551 I wish you the best of success.
552
553 \hfill mds
554
555 \hfill September 17, 2014
556
557 \subsection{Subsection Heading Here}
558 Subsection text here.
559
560 % needed in second column of first page if using \IEEEpubid
561 %\IEEEpubidadjcol
562
563 \subsubsection{Subsubsection Heading Here}
564 Subsubsection text here.
565
566
567 % An example of a floating figure using the graphicx package.
568 % Note that \label must occur AFTER (or within) \caption.
569 % For figures, \caption should occur after the \includegraphics.
570 % Note that IEEEtran v1.7 and later has special internal code that
571 % is designed to preserve the operation of \label within \caption
572 % even when the captionsoff option is in effect. However, because
573 % of issues like this, it may be the safest practice to put all your
574 % \label just after \caption rather than within \caption{}.
575 %
576 % Reminder: the "draftcls" or "draftclsnofoot", not "draft", class
577 % option should be used if it is desired that the figures are to be
578 % displayed while in draft mode.
579 %
580 %\begin{figure}[!t]
581 %\centering
582 %\includegraphics[width=2.5in]{myfigure}
583 % where an .eps filename suffix will be assumed under latex,
584 % and a .pdf suffix will be assumed for pdflatex; or what has been declared
585 % via \DeclareGraphicsExtensions.
586 %\caption{Simulation results for the network.}
587 %\label{fig_sim}
588 %\end{figure}
589
590 % Note that IEEE typically puts floats only at the top, even when this
591 % results in a large percentage of a column being occupied by floats.
592 % However, the Computer Society has been known to put floats at the bottom.
593
594
595 % An example of a double column floating figure using two subfigures.
596 % (The subfig.sty package must be loaded for this to work.)
597 % The subfigure \label commands are set within each subfloat command,
598 % and the \label for the overall figure must come after \caption.
599 % \hfil is used as a separator to get equal spacing.
600 % Watch out that the combined width of all the subfigures on a
601 % line do not exceed the text width or a line break will occur.
602 %
603 %\begin{figure*}[!t]
604 %\centering
605 %\subfloat[Case I]{\includegraphics[width=2.5in]{box}%
606 %\label{fig_first_case}}
607 %\hfil
608 %\subfloat[Case II]{\includegraphics[width=2.5in]{box}%
609 %\label{fig_second_case}}
610 %\caption{Simulation results for the network.}
611 %\label{fig_sim}
612 %\end{figure*}
613 %
614 % Note that often IEEE papers with subfigures do not employ subfigure
615 % captions (using the optional argument to \subfloat[]), but instead will
616 % reference/describe all of them (a), (b), etc., within the main caption.
617 % Be aware that for subfig.sty to generate the (a), (b), etc., subfigure
618 % labels, the optional argument to \subfloat must be present. If a
619 % subcaption is not desired, just leave its contents blank,
620 % e.g., \subfloat[].
621
622
623 % An example of a floating table. Note that, for IEEE style tables, the
624 % \caption command should come BEFORE the table and, given that table
625 % captions serve much like titles, are usually capitalized except for words
626 % such as a, an, and, as, at, but, by, for, in, nor, of, on, or, the, to
627 % and up, which are usually not capitalized unless they are the first or
628 % last word of the caption. Table text will default to \footnotesize as
629 % IEEE normally uses this smaller font for tables.
630 % The \label must come after \caption as always.
631 %
632 %\begin{table}[!t]
633 %% increase table row spacing, adjust to taste
634 %\renewcommand{\arraystretch}{1.3}
635 % if using array.sty, it might be a good idea to tweak the value of
636 % \extrarowheight as needed to properly center the text within the cells
637 %\caption{An Example of a Table}
638 %\label{table_example}
639 %\centering
640 %% Some packages, such as MDW tools, offer better commands for making tables
641 %% than the plain LaTeX2e tabular which is used here.
642 %\begin{tabular}{|c||c|}
643 %\hline
644 %One & Two\\
645 %\hline
646 %Three & Four\\
647 %\hline
648 %\end{tabular}
649 %\end{table}
650
651
652 % Note that the IEEE does not put floats in the very first column
653 % - or typically anywhere on the first page for that matter. Also,
654 % in-text middle ("here") positioning is typically not used, but it
655 % is allowed and encouraged for Computer Society conferences (but
656 % not Computer Society journals). Most IEEE journals/conferences use
657 % top floats exclusively.
658 % Note that, LaTeX2e, unlike IEEE journals/conferences, places
659 % footnotes above bottom floats. This can be corrected via the
660 % \fnbelowfloat command of the stfloats package.
661
662
663
664
665 \section{Conclusion}
666 The conclusion goes here.
667
668
669
670
671
672 % if have a single appendix:
673 %\appendix[Proof of the Zonklar Equations]
674 % or
675 %\appendix % for no appendix heading
676 % do not use \section anymore after \appendix, only \section*
677 % is possibly needed
678
679 % use appendices with more than one appendix
680 % then use \section to start each appendix
681 % you must declare a \section before using any
682 % \subsection or using \label (\appendices by itself
683 % starts a section numbered zero.)
684 %
685
686
687 \appendices
688 \section{Proof of the First Zonklar Equation}
689 Appendix one text goes here.
690
691 % you can choose not to have a title for an appendix
692 % if you want by leaving the argument blank
693 \section{}
694 Appendix two text goes here.
695
696
697 % use section* for acknowledgment
698 \ifCLASSOPTIONcompsoc
699 % The Computer Society usually uses the plural form
700 \section*{Acknowledgments}
701 \else
702 % regular IEEE prefers the singular form
703 \section*{Acknowledgment}
704 \fi
705
706
707 The authors would like to thank...
708
709
710 % Can use something like this to put references on a page
711 % by themselves when using endfloat and the captionsoff option.
712 \ifCLASSOPTIONcaptionsoff
713 \newpage
714 \fi
715
716
717
718 % trigger a \newpage just before the given reference
719 % number - used to balance the columns on the last page
720 % adjust value as needed - may need to be readjusted if
721 % the document is modified later
722 %\IEEEtriggeratref{8}
723 % The "triggered" command can be changed if desired:
724 %\IEEEtriggercmd{\enlargethispage{-5in}}
725
726 % references section
727
728 % can use a bibliography generated by BibTeX as a .bbl file
729 % BibTeX documentation can be easily obtained at:
730 % http://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/
731 % The IEEEtran BibTeX style support page is at:
732 % http://www.michaelshell.org/tex/ieeetran/bibtex/
733 %\bibliographystyle{IEEEtran}
734 % argument is your BibTeX string definitions and bibliography database(s)
735 %\bibliography{IEEEabrv,../bib/paper}
736 %
737 % <OR> manually copy in the resultant .bbl file
738 % set second argument of \begin to the number of references
739 % (used to reserve space for the reference number labels box)
740 \begin{thebibliography}{1}
741
742 \bibitem{IEEEhowto:kopka}
743 H.~Kopka and P.~W. Daly, \emph{A Guide to \LaTeX}, 3rd~ed.\hskip 1em plus
744 0.5em minus 0.4em\relax Harlow, England: Addison-Wesley, 1999.
745
746 \end{thebibliography}
747
748 % biography section
749 %
750 % If you have an EPS/PDF photo (graphicx package needed) extra braces are
751 % needed around the contents of the optional argument to biography to prevent
752 % the LaTeX parser from getting confused when it sees the complicated
753 % \includegraphics command within an optional argument. (You could create
754 % your own custom macro containing the \includegraphics command to make things
755 % simpler here.)
756 %\begin{IEEEbiography}[{\includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{mshell}}]{Michael Shell}
757 % or if you just want to reserve a space for a photo:
758
759 \begin{IEEEbiography}{Michael Shell}
760 Biography text here.
761 \end{IEEEbiography}
762
763 % if you will not have a photo at all:
764 \begin{IEEEbiographynophoto}{John Doe}
765 Biography text here.
766 \end{IEEEbiographynophoto}
767
768 % insert where needed to balance the two columns on the last page with
769 % biographies
770 %\newpage
771
772 \begin{IEEEbiographynophoto}{Jane Doe}
773 Biography text here.
774 \end{IEEEbiographynophoto}
775
776 % You can push biographies down or up by placing
777 % a \vfill before or after them. The appropriate
778 % use of \vfill depends on what kind of text is
779 % on the last page and whether or not the columns
780 % are being equalized.
781
782 %\vfill
783
784 % Can be used to pull up biographies so that the bottom of the last one
785 % is flush with the other column.
786 %\enlargethispage{-5in}
787
788
789
790 % that's all folks
791 \end{document}
792
793