skeleton.Rmd 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. ---
  2. title: Bare Demo of IEEEtran.cls for IEEE Conferences
  3. author:
  4. - name: Michael Shell
  5. affiliation: Georgia Institute of Technology
  6. department: Computer Engineering
  7. location: Atlanta, Georgia 30332--0250
  8. email: [email protected]
  9. - name: Daniel Emaasit
  10. affiliation: University of Nevada
  11. department: Civil Engineering
  12. location: Las Vegas, Nevada 89119
  13. email: [email protected]
  14. - name: Alice Wonderland
  15. affiliation: Another University
  16. department: Your Department
  17. location: City, State Zip
  18. email: [email protected]
  19. abstract: |
  20. The abstract goes here.
  21. bibliography: mybibfile.bib
  22. output: rticles::ieee_article
  23. ---
  24. Introduction
  25. =============
  26. <!-- no \IEEEPARstart -->
  27. This demo file is intended to serve as a ``starter file''
  28. for IEEE conference papers produced under \LaTeX\ using
  29. IEEEtran.cls version 1.8b and later.
  30. <!-- You must have at least 2 lines in the paragraph with the drop letter -->
  31. <!-- (should never be an issue) -->
  32. I wish you the best of success.
  33. ## Subsection Heading Here
  34. Subsection text here.
  35. ### Subsubsection Heading Here
  36. Subsubsection text here.
  37. <!-- An example of a floating figure using the graphicx package. -->
  38. <!-- Note that \label must occur AFTER (or within) \caption. -->
  39. <!-- For figures, \caption should occur after the \includegraphics. -->
  40. <!-- Note that IEEEtran v1.7 and later has special internal code that -->
  41. <!-- is designed to preserve the operation of \label within \caption -->
  42. <!-- even when the captionsoff option is in effect. However, because -->
  43. <!-- of issues like this, it may be the safest practice to put all your -->
  44. <!-- \label just after \caption rather than within \caption{}. -->
  45. <!-- Reminder: the "draftcls" or "draftclsnofoot", not "draft", class -->
  46. <!-- option should be used if it is desired that the figures are to be -->
  47. <!-- displayed while in draft mode. -->
  48. <!-- \begin{figure}[!t] -->
  49. <!-- \centering -->
  50. <!-- \includegraphics[width=2.5in]{myfigure} -->
  51. <!-- where an .eps filename suffix will be assumed under latex, -->
  52. <!-- and a .pdf suffix will be assumed for pdflatex; or what has been declared -->
  53. <!-- via \DeclareGraphicsExtensions. -->
  54. <!-- \caption{Simulation results for the network.} -->
  55. <!-- \label{fig_sim} -->
  56. <!-- \end{figure} -->
  57. <!-- Note that the IEEE typically puts floats only at the top, even when this -->
  58. <!-- results in a large percentage of a column being occupied by floats. -->
  59. <!-- An example of a double column floating figure using two subfigures. -->
  60. <!-- (The subfig.sty package must be loaded for this to work.) -->
  61. <!-- The subfigure \label commands are set within each subfloat command, -->
  62. <!-- and the \label for the overall figure must come after \caption. -->
  63. <!-- \hfil is used as a separator to get equal spacing. -->
  64. <!-- Watch out that the combined width of all the subfigures on a -->
  65. <!-- line do not exceed the text width or a line break will occur. -->
  66. <!-- \begin{figure*}[!t] -->
  67. <!-- \centering -->
  68. <!-- \subfloat[Case I]{\includegraphics[width=2.5in]{box}% -->
  69. <!-- \label{fig_first_case}} -->
  70. <!-- \hfil -->
  71. <!-- \subfloat[Case II]{\includegraphics[width=2.5in]{box}% -->
  72. <!-- \label{fig_second_case}} -->
  73. <!-- \caption{Simulation results for the network.} -->
  74. <!-- \label{fig_sim} -->
  75. <!-- \end{figure*} -->
  76. <!-- Note that often IEEE papers with subfigures do not employ subfigure -->
  77. <!-- captions (using the optional argument to \subfloat[]), but instead will -->
  78. <!-- reference/describe all of them (a), (b), etc., within the main caption. -->
  79. <!-- Be aware that for subfig.sty to generate the (a), (b), etc., subfigure -->
  80. <!-- labels, the optional argument to \subfloat must be present. If a -->
  81. <!-- subcaption is not desired, just leave its contents blank, -->
  82. <!-- e.g., \subfloat[]. -->
  83. <!-- An example of a floating table. Note that, for IEEE style tables, the -->
  84. <!-- \caption command should come BEFORE the table and, given that table -->
  85. <!-- captions serve much like titles, are usually capitalized except for words -->
  86. <!-- such as a, an, and, as, at, but, by, for, in, nor, of, on, or, the, to -->
  87. <!-- and up, which are usually not capitalized unless they are the first or -->
  88. <!-- last word of the caption. Table text will default to \footnotesize as -->
  89. <!-- the IEEE normally uses this smaller font for tables. -->
  90. <!-- The \label must come after \caption as always. -->
  91. <!-- \begin{table}[!t] -->
  92. <!-- % increase table row spacing, adjust to taste -->
  93. <!-- \renewcommand{\arraystretch}{1.3} -->
  94. <!-- if using array.sty, it might be a good idea to tweak the value of -->
  95. <!-- \extrarowheight as needed to properly center the text within the cells -->
  96. <!-- \caption{An Example of a Table} -->
  97. <!-- \label{table_example} -->
  98. <!-- \centering -->
  99. <!-- % Some packages, such as MDW tools, offer better commands for making tables -->
  100. <!-- % than the plain LaTeX2e tabular which is used here. -->
  101. <!-- \begin{tabular}{|c||c|} -->
  102. <!-- \hline -->
  103. <!-- One & Two\\ -->
  104. <!-- \hline -->
  105. <!-- Three & Four\\ -->
  106. <!-- \hline -->
  107. <!-- \end{tabular} -->
  108. <!-- \end{table} -->
  109. <!-- Note that the IEEE does not put floats in the very first column -->
  110. <!-- - or typically anywhere on the first page for that matter. Also, -->
  111. <!-- in-text middle ("here") positioning is typically not used, but it -->
  112. <!-- is allowed and encouraged for Computer Society conferences (but -->
  113. <!-- not Computer Society journals). Most IEEE journals/conferences use -->
  114. <!-- top floats exclusively. -->
  115. <!-- Note that, LaTeX2e, unlike IEEE journals/conferences, places -->
  116. <!-- footnotes above bottom floats. This can be corrected via the -->
  117. <!-- \fnbelowfloat command of the stfloats package. -->
  118. Conclusion
  119. ============
  120. The conclusion goes here.
  121. <!-- conference papers do not normally have an appendix -->
  122. Acknowledgment {#acknowledgment}
  123. ==============
  124. The authors would like to thank...
  125. Bibliography styles
  126. ===================
  127. Here are two sample references: @Feynman1963118 [@Dirac1953888].
  128. \newpage
  129. References {#references .numbered}
  130. ==========