Guest User

Example problematic Latex file

a guest
Jul 21st, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 21.83 KB | None | 0 0
  1.  
  2. %% bare_jrnl.tex
  3. %% V1.4b
  4. %% 2015/08/26
  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.8b or later) with an IEEE
  11. %% journal paper.
  12. %%
  13. %% Support sites:
  14. %% http://www.michaelshell.org/tex/ieeetran/
  15. %% http://www.ctan.org/pkg/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 the 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.  
  43.  
  44. % *** Authors should verify (and, if needed, correct) their LaTeX system  ***
  45. % *** with the testflow diagnostic prior to trusting their LaTeX platform ***
  46. % *** with production work. The IEEE's font choices and paper sizes can   ***
  47. % *** trigger bugs that do not appear when using other class files.       ***                          ***
  48. % The testflow support page is at:
  49. % http://www.michaelshell.org/tex/testflow/
  50.  
  51.  
  52.  
  53. %\documentclass[journal,12pt,onecolumn,draftclsnofoot,]{IEEEtran}
  54. \documentclass[journal]{IEEEtran}
  55. %,12pt,onecolumn,draftclsnofootl
  56. % If IEEEtran.cls has not been installed into the LaTeX system files,
  57. % manually specify the path to it like:
  58. % \documentclass[journal]{../sty/IEEEtran}
  59.  
  60. \usepackage{amsmath}
  61. \interdisplaylinepenalty=2500
  62.  
  63.  
  64.  
  65. % Some very useful LaTeX packages include:
  66. % (uncomment the ones you want to load)
  67.  
  68.  
  69. % *** MISC UTILITY PACKAGES ***
  70. %
  71. %\usepackage{ifpdf}
  72. % Heiko Oberdiek's ifpdf.sty is very useful if you need conditional
  73. % compilation based on whether the output is pdf or dvi.
  74. % usage:
  75. % \ifpdf
  76. %   % pdf code
  77. % \else
  78. %   % dvi code
  79. % \fi
  80. % The latest version of ifpdf.sty can be obtained from:
  81. % http://www.ctan.org/pkg/ifpdf
  82. % Also, note that IEEEtran.cls V1.7 and later provides a builtin
  83. % \ifCLASSINFOpdf conditional that works the same way.
  84. % When switching from latex to pdflatex and vice-versa, the compiler may
  85. % have to be run twice to clear warning/error messages.
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92. % *** CITATION PACKAGES ***
  93. %
  94. %\usepackage{cite}
  95. % cite.sty was written by Donald Arseneau
  96. % V1.6 and later of IEEEtran pre-defines the format of the cite.sty package
  97. % \cite{} output to follow that of the IEEE. Loading the cite package will
  98. % result in citation numbers being automatically sorted and properly
  99. % "compressed/ranged". e.g., [1], [9], [2], [7], [5], [6] without using
  100. % cite.sty will become [1], [2], [5]--[7], [9] using cite.sty. cite.sty's
  101. % \cite will automatically add leading space, if needed. Use cite.sty's
  102. % noadjust option (cite.sty V3.8 and later) if you want to turn this off
  103. % such as if a citation ever needs to be enclosed in parenthesis.
  104. % cite.sty is already installed on most LaTeX systems. Be sure and use
  105. % version 5.0 (2009-03-20) and later if using hyperref.sty.
  106. % The latest version can be obtained at:
  107. % http://www.ctan.org/pkg/cite
  108. % The documentation is contained in the cite.sty file itself.
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115. % *** GRAPHICS RELATED PACKAGES ***
  116. %
  117. \ifCLASSINFOpdf
  118.   % \usepackage[pdftex]{graphicx}
  119.   % declare the path(s) where your graphic files are
  120.   % \graphicspath{{../pdf/}{../jpeg/}}
  121.   % and their extensions so you won't have to specify these with
  122.   % every instance of \includegraphics
  123.   % \DeclareGraphicsExtensions{.pdf,.jpeg,.png}
  124. \else
  125.   % or other class option (dvipsone, dvipdf, if not using dvips). graphicx
  126.   % will default to the driver specified in the system graphics.cfg if no
  127.   % driver is specified.
  128.   % \usepackage[dvips]{graphicx}
  129.   % declare the path(s) where your graphic files are
  130.   % \graphicspath{{../eps/}}
  131.   % and their extensions so you won't have to specify these with
  132.   % every instance of \includegraphics
  133.   % \DeclareGraphicsExtensions{.eps}
  134. \fi
  135. % graphicx was written by David Carlisle and Sebastian Rahtz. It is
  136. % required if you want graphics, photos, etc. graphicx.sty is already
  137. % installed on most LaTeX systems. The latest version and documentation
  138. % can be obtained at:
  139. % http://www.ctan.org/pkg/graphicx
  140. % Another good source of documentation is "Using Imported Graphics in
  141. % LaTeX2e" by Keith Reckdahl which can be found at:
  142. % http://www.ctan.org/pkg/epslatex
  143. %
  144. % latex, and pdflatex in dvi mode, support graphics in encapsulated
  145. % postscript (.eps) format. pdflatex in pdf mode supports graphics
  146. % in .pdf, .jpeg, .png and .mps (metapost) formats. Users should ensure
  147. % that all non-photo figures use a vector format (.eps, .pdf, .mps) and
  148. % not a bitmapped formats (.jpeg, .png). The IEEE frowns on bitmapped formats
  149. % which can result in "jaggedy"/blurry rendering of lines and letters as
  150. % well as large increases in file sizes.
  151. %
  152. % You can find documentation about the pdfTeX application at:
  153. % http://www.tug.org/applications/pdftex
  154.  
  155.  
  156.  
  157.  
  158.  
  159. % *** MATH PACKAGES ***
  160. %
  161. %\usepackage{amsmath}
  162. % A popular package from the American Mathematical Society that provides
  163. % many useful and powerful commands for dealing with mathematics.
  164. %
  165. % Note that the amsmath package sets \interdisplaylinepenalty to 10000
  166. % thus preventing page breaks from occurring within multiline equations. Use:
  167. %\interdisplaylinepenalty=2500
  168. % after loading amsmath to restore such page breaks as IEEEtran.cls normally
  169. % does. amsmath.sty is already installed on most LaTeX systems. The latest
  170. % version and documentation can be obtained at:
  171. % http://www.ctan.org/pkg/amsmath
  172.  
  173.  
  174.  
  175.  
  176.  
  177. % *** SPECIALIZED LIST PACKAGES ***
  178. %
  179. %\usepackage{algorithmic}
  180. % algorithmic.sty was written by Peter Williams and Rogerio Brito.
  181. % This package provides an algorithmic environment fo describing algorithms.
  182. % You can use the algorithmic environment in-text or within a figure
  183. % environment to provide for a floating algorithm. Do NOT use the algorithm
  184. % floating environment provided by algorithm.sty (by the same authors) or
  185. % algorithm2e.sty (by Christophe Fiorio) as the IEEE does not use dedicated
  186. % algorithm float types and packages that provide these will not provide
  187. % correct IEEE style captions. The latest version and documentation of
  188. % algorithmic.sty can be obtained at:
  189. % http://www.ctan.org/pkg/algorithms
  190. % Also of interest may be the (relatively newer and more customizable)
  191. % algorithmicx.sty package by Szasz Janos:
  192. % http://www.ctan.org/pkg/algorithmicx
  193.  
  194.  
  195.  
  196.  
  197. % *** ALIGNMENT PACKAGES ***
  198. %
  199. %\usepackage{array}
  200. % Frank Mittelbach's and David Carlisle's array.sty patches and improves
  201. % the standard LaTeX2e array and tabular environments to provide better
  202. % appearance and additional user controls. As the default LaTeX2e table
  203. % generation code is lacking to the point of almost being broken with
  204. % respect to the quality of the end results, all users are strongly
  205. % advised to use an enhanced (at the very least that provided by array.sty)
  206. % set of table tools. array.sty is already installed on most systems. The
  207. % latest version and documentation can be obtained at:
  208. % http://www.ctan.org/pkg/array
  209.  
  210.  
  211. % IEEEtran contains the IEEEeqnarray family of commands that can be used to
  212. % generate multiline equations as well as matrices, tables, etc., of high
  213. % quality.
  214.  
  215.  
  216.  
  217.  
  218. % *** SUBFIGURE PACKAGES ***
  219. %\ifCLASSOPTIONcompsoc
  220. %  \usepackage[caption=false,font=normalsize,labelfont=sf,textfont=sf]{subfig}
  221. %\else
  222. %  \usepackage[caption=false,font=footnotesize]{subfig}
  223. %\fi
  224. % subfig.sty, written by Steven Douglas Cochran, is the modern replacement
  225. % for subfigure.sty, the latter of which is no longer maintained and is
  226. % incompatible with some LaTeX packages including fixltx2e. However,
  227. % subfig.sty requires and automatically loads Axel Sommerfeldt's caption.sty
  228. % which will override IEEEtran.cls' handling of captions and this will result
  229. % in non-IEEE style figure/table captions. To prevent this problem, be sure
  230. % and invoke subfig.sty's "caption=false" package option (available since
  231. % subfig.sty version 1.3, 2005/06/28) as this is will preserve IEEEtran.cls
  232. % handling of captions.
  233. % Note that the Computer Society format requires a larger sans serif font
  234. % than the serif footnote size font used in traditional IEEE formatting
  235. % and thus the need to invoke different subfig.sty package options depending
  236. % on whether compsoc mode has been enabled.
  237. %
  238. % The latest version and documentation of subfig.sty can be obtained at:
  239. % http://www.ctan.org/pkg/subfig
  240.  
  241.  
  242.  
  243.  
  244. % *** FLOAT PACKAGES ***
  245. %
  246. %\usepackage{fixltx2e}
  247. % fixltx2e, the successor to the earlier fix2col.sty, was written by
  248. % Frank Mittelbach and David Carlisle. This package corrects a few problems
  249. % in the LaTeX2e kernel, the most notable of which is that in current
  250. % LaTeX2e releases, the ordering of single and double column floats is not
  251. % guaranteed to be preserved. Thus, an unpatched LaTeX2e can allow a
  252. % single column figure to be placed prior to an earlier double column
  253. % figure.
  254. % Be aware that LaTeX2e kernels dated 2015 and later have fixltx2e.sty's
  255. % corrections already built into the system in which case a warning will
  256. % be issued if an attempt is made to load fixltx2e.sty as it is no longer
  257. % needed.
  258. % The latest version and documentation can be found at:
  259. % http://www.ctan.org/pkg/fixltx2e
  260.  
  261.  
  262. %\usepackage{stfloats}
  263. % stfloats.sty was written by Sigitas Tolusis. This package gives LaTeX2e
  264. % the ability to do double column floats at the bottom of the page as well
  265. % as the top. (e.g., "\begin{figure*}[!b]" is not normally possible in
  266. % LaTeX2e). It also provides a command:
  267. %\fnbelowfloat
  268. % to enable the placement of footnotes below bottom floats (the standard
  269. % LaTeX2e kernel puts them above bottom floats). This is an invasive package
  270. % which rewrites many portions of the LaTeX2e float routines. It may not work
  271. % with other packages that modify the LaTeX2e float routines. The latest
  272. % version and documentation can be obtained at:
  273. % http://www.ctan.org/pkg/stfloats
  274. % Do not use the stfloats baselinefloat ability as the IEEE does not allow
  275. % \baselineskip to stretch. Authors submitting work to the IEEE should note
  276. % that the IEEE rarely uses double column equations and that authors should try
  277. % to avoid such use. Do not be tempted to use the cuted.sty or midfloat.sty
  278. % packages (also by Sigitas Tolusis) as the IEEE does not format its papers in
  279. % such ways.
  280. % Do not attempt to use stfloats with fixltx2e as they are incompatible.
  281. % Instead, use Morten Hogholm'a dblfloatfix which combines the features
  282. % of both fixltx2e and stfloats:
  283. %
  284. % \usepackage{dblfloatfix}
  285. % The latest version can be found at:
  286. % http://www.ctan.org/pkg/dblfloatfix
  287.  
  288.  
  289.  
  290.  
  291. %\ifCLASSOPTIONcaptionsoff
  292. %  \usepackage[nomarkers]{endfloat}
  293. % \let\MYoriglatexcaption\caption
  294. % \renewcommand{\caption}[2][\relax]{\MYoriglatexcaption[#2]{#2}}
  295. %\fi
  296. % endfloat.sty was written by James Darrell McCauley, Jeff Goldberg and
  297. % Axel Sommerfeldt. This package may be useful when used in conjunction with
  298. % IEEEtran.cls'  captionsoff option. Some IEEE journals/societies require that
  299. % submissions have lists of figures/tables at the end of the paper and that
  300. % figures/tables without any captions are placed on a page by themselves at
  301. % the end of the document. If needed, the draftcls IEEEtran class option or
  302. % \CLASSINPUTbaselinestretch interface can be used to increase the line
  303. % spacing as well. Be sure and use the nomarkers option of endfloat to
  304. % prevent endfloat from "marking" where the figures would have been placed
  305. % in the text. The two hack lines of code above are a slight modification of
  306. % that suggested by in the endfloat docs (section 8.4.1) to ensure that
  307. % the full captions always appear in the list of figures/tables - even if
  308. % the user used the short optional argument of \caption[]{}.
  309. % IEEE papers do not typically make use of \caption[]'s optional argument,
  310. % so this should not be an issue. A similar trick can be used to disable
  311. % captions of packages such as subfig.sty that lack options to turn off
  312. % the subcaptions:
  313. % For subfig.sty:
  314. % \let\MYorigsubfloat\subfloat
  315. % \renewcommand{\subfloat}[2][\relax]{\MYorigsubfloat[]{#2}}
  316. % However, the above trick will not work if both optional arguments of
  317. % the \subfloat command are used. Furthermore, there needs to be a
  318. % description of each subfigure *somewhere* and endfloat does not add
  319. % subfigure captions to its list of figures. Thus, the best approach is to
  320. % avoid the use of subfigure captions (many IEEE journals avoid them anyway)
  321. % and instead reference/explain all the subfigures within the main caption.
  322. % The latest version of endfloat.sty and its documentation can obtained at:
  323. % http://www.ctan.org/pkg/endfloat
  324. %
  325. % The IEEEtran \ifCLASSOPTIONcaptionsoff conditional can also be used
  326. % later in the document, say, to conditionally put the References on a
  327. % page by themselves.
  328.  
  329.  
  330.  
  331.  
  332. % *** PDF, URL AND HYPERLINK PACKAGES ***
  333. %
  334. %\usepackage{url}
  335. % url.sty was written by Donald Arseneau. It provides better support for
  336. % handling and breaking URLs. url.sty is already installed on most LaTeX
  337. % systems. The latest version and documentation can be obtained at:
  338. % http://www.ctan.org/pkg/url
  339. % Basically, \url{my_url_here}.
  340.  
  341.  
  342. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  343. %% New commands by me: - check at the end
  344. %\usepackage{cite}
  345. \usepackage{bm}
  346. \newcommand{\matr}[1]{\bm{#1}}   % command to define matrices - change as desired
  347. \newcommand{\vect}[1]{\bm{#1}}   % command to define vectors - change as desired
  348. \usepackage{graphicx}
  349. \usepackage{epstopdf}
  350. \usepackage{lineno}
  351. \linenumbers
  352. %\usepackage{color}
  353. %\usepackage{subfig}
  354. \usepackage{hyperref}
  355. \usepackage{cases}
  356. \usepackage{amsfonts}
  357. %\usepackage{nomencl}
  358. %\makenomenclature
  359. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  360.  
  361.  
  362. % *** Do not adjust lengths that control margins, column widths, etc. ***
  363. % *** Do not use packages that alter fonts (such as pslatex).         ***
  364. % There should be no need to do such things with IEEEtran.cls V1.6 and later.
  365. % (Unless specifically asked to do so by the journal or conference you plan
  366. % to submit to, of course. )
  367.  
  368.  
  369. % correct bad hyphenation here
  370. \hyphenation{op-tical net-works semi-conduc-tor}
  371.  
  372.  
  373. \begin{document}
  374. %
  375. % paper title
  376. % Titles are generally capitalized except for words such as a, an, and, as,
  377. % at, but, by, for, in, nor, of, on, or, the, to and up, which are usually
  378. % not capitalized unless they are the first or last word of the title.
  379. % Linebreaks \\ can be used within to get better formatting as desired.
  380. % Do not put math or special symbols in the title.
  381. \title{An Innovative Marine Growth Detection System for Underwater Gliders}
  382. %
  383. %
  384. % author names and IEEE memberships
  385. % note positions of commas and nonbreaking spaces ( ~ ) LaTeX will not break
  386. % a structure at a ~ so this keeps an author's name from being broken across
  387. % two lines.
  388. % use \thanks{} to gain access to the first footnote area
  389. % a separate \thanks must be used for each paragraph as LaTeX2e's \thanks
  390. % was not built to handle multiple paragraphs
  391. %
  392.  
  393. \author{Author~1,
  394.         Author~2,
  395.         and~Author~3% <-this % stops a space
  396. \thanks{The research leading to these results has received funding from
  397.  
  398. Author 1 is with}% <-this % stops a space
  399. \thanks{Author 2 is with}% <-this % stops a space
  400. \thanks{Manuscript received July, 2020; revised YY, 2020.}}
  401.  
  402. % note the % following the last \IEEEmembership and also \thanks -
  403. % these prevent an unwanted space from occurring between the last author name
  404. % and the end of the author line. i.e., if you had this:
  405. %
  406. % \author{....lastname \thanks{...} \thanks{...} }
  407. %                     ^------------^------------^----Do not want these spaces!
  408. %
  409. % a space would be appended to the last name and could cause every name on that
  410. % line to be shifted left slightly. This is one of those "LaTeX things". For
  411. % instance, "\textbf{A} \textbf{B}" will typeset as "A B" not "AB". To get
  412. % "AB" then you have to do: "\textbf{A}\textbf{B}"
  413. % \thanks is no different in this regard, so shield the last } of each \thanks
  414. % that ends a line with a % and do not let a space in before the next \thanks.
  415. % Spaces after \IEEEmembership other than the last one are OK (and needed) as
  416. % you are supposed to have spaces between the names. For what it is worth,
  417. % this is a minor point as most people would not even notice if the said evil
  418. % space somehow managed to creep in.
  419.  
  420.  
  421.  
  422. % The paper headers
  423. \markboth{Journal of Oceanic Engineering,~Vol.~XX, No.~Y, July~2020}%
  424. {A Novel Title}
  425. % The only time the second header will appear is for the odd numbered pages
  426. % after the title page when using the twoside option.
  427. %
  428. % *** Note that you probably will NOT want to include the author's ***
  429. % *** name in the headers of peer review papers.                   ***
  430. % You can use \ifCLASSOPTIONpeerreview for conditional compilation here if
  431. % you desire.
  432.  
  433.  
  434.  
  435.  
  436. % If you want to put a publisher's ID mark on the page you can do it like
  437. % this:
  438. %\IEEEpubid{0000--0000/00\$00.00~\copyright~2015 IEEE}
  439. % Remember, if you use this you must call \IEEEpubidadjcol in the second
  440. % column for its text to clear the IEEEpubid mark.
  441.  
  442.  
  443.  
  444. % use for special paper notices
  445. %\IEEEspecialpapernotice{(Invited Paper)}
  446.  
  447.  
  448.  
  449.  
  450. % make the title area
  451. \maketitle
  452.  
  453. % As a general rule, do not put math, special symbols or citations
  454. % in the abstract or keywords.
  455. \begin{abstract}
  456. Marine
  457. \end{abstract}
  458.  
  459. % Note that keywords are not normally used for peerreview papers.
  460. \begin{IEEEkeywords}
  461. Word 1, word 2, word 3.
  462. \end{IEEEkeywords}
  463.  
  464.  
  465. % For peer review papers, you can put extra information on the cover
  466. % page as needed:
  467. % \ifCLASSOPTIONpeerreview
  468. % \begin{center} \bfseries EDICS Category: 3-BBND \end{center}
  469. % \fi
  470. %
  471. % For peerreview papers, this IEEEtran command inserts a page break and
  472. % creates the second title. It will be ignored for other modes.
  473. \IEEEpeerreviewmaketitle
  474.  
  475.  
  476.  
  477. \section{Introduction}
  478. % The very first letter is a 2 line initial drop letter followed
  479. % by the rest of the first word in caps.
  480. %
  481. % form to use if the first word consists of a single letter:
  482. % \IEEEPARstart{A}{demo} file is ....
  483. %
  484. % form to use if you need the single drop letter followed by
  485. % normal text (unknown if ever used by the IEEE):
  486. % \IEEEPARstart{A}{}demo file is ....
  487. %
  488. % Some journals put the first two words in caps:
  489. % \IEEEPARstart{T}{his demo} file is ....
  490. %
  491. % Here we have the typical use of a "T" for an initial drop letter
  492. % and "HIS" in caps to complete the first word.
  493. Underwater
  494.  
  495.  
  496. % Can use something like this to put references on a page
  497. % by themselves when using endfloat and the captionsoff option.
  498. \ifCLASSOPTIONcaptionsoff
  499.   \newpage
  500. \fi
  501.  
  502.  
  503.  
  504. % trigger a \newpage just before the given reference
  505. % number - used to balance the columns on the last page
  506. % adjust value as needed - may need to be readjusted if
  507. % the document is modified later
  508. %\IEEEtriggeratref{8}
  509. % The "triggered" command can be changed if desired:
  510. %\IEEEtriggercmd{\enlargethispage{-5in}}
  511.  
  512. % references section
  513.  
  514. % can use a bibliography generated by BibTeX as a .bbl file
  515. % BibTeX documentation can be easily obtained at:
  516. % http://mirror.ctan.org/biblio/bibtex/contrib/doc/
  517. % The IEEEtran BibTeX style support page is at:
  518. % http://www.michaelshell.org/tex/ieeetran/bibtex/
  519. \bibliographystyle{IEEEtran}
  520. % argument is your BibTeX string definitions and bibliography database(s)
  521. %\bibliography{IEEEabrv,../bib/paper}
  522. %
  523. % <OR> manually copy in the resultant .bbl file
  524. % set second argument of \begin to the number of references
  525. % (used to reserve space for the reference number labels box)
  526. \bibliography{../library}
  527.  
  528. % biography section
  529. %
  530. % If you have an EPS/PDF photo (graphicx package needed) extra braces are
  531. % needed around the contents of the optional argument to biography to prevent
  532. % the LaTeX parser from getting confused when it sees the complicated
  533. % \includegraphics command within an optional argument. (You could create
  534. % your own custom macro containing the \includegraphics command to make things
  535. % simpler here.)
  536. %\begin{IEEEbiography}[{\includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{mshell}}]{Michael Shell}
  537. % or if you just want to reserve a space for a photo:
  538.  
  539. %\begin{IEEEbiography}{Michael Shell}
  540. %Biography text here.
  541. %\end{IEEEbiography}
  542.  
  543. % if you will not have a photo at all:
  544. %\begin{IEEEbiographynophoto}{John Doe}
  545. %Biography text here.
  546. %\end{IEEEbiographynophoto}
  547.  
  548. % insert where needed to balance the two columns on the last page with
  549. % biographies
  550. %\newpage
  551.  
  552. %\begin{IEEEbiographynophoto}{Jane Doe}
  553. %Biography text here.
  554. %\end{IEEEbiographynophoto}
  555.  
  556. % You can push biographies down or up by placing
  557. % a \vfill before or after them. The appropriate
  558. % use of \vfill depends on what kind of text is
  559. % on the last page and whether or not the columns
  560. % are being equalized.
  561.  
  562. %\vfill
  563.  
  564. % Can be used to pull up biographies so that the bottom of the last one
  565. % is flush with the other column.
  566. %\enlargethispage{-5in}
  567.  
  568.  
  569.  
  570. % that's all folks
  571. \end{document}
Add Comment
Please, Sign In to add comment