comparison bare_jrnl.tex @ 0:c0d36568602d

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