Common Importing Problems

From Eigenvector Research Documentation Wiki
Revision as of 12:47, 9 September 2008 by imported>Jeremy (New page: ==Things to watch out for== ===Missing equations and/or figures=== None of our images or equations will have been imported. Compare the page to the existing reference * Options or Descr...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Things to watch out for

Missing equations and/or figures

None of our images or equations will have been imported. Compare the page to the existing reference

  • Options or Description lines which got converted into bulleted, bolded format (as if they were an option or input description):
    • In the case of an error, this function will return an empty array.
*'''In''' the case of an error, this function will return an empty array.
SOLUTION: remove * and ''' markup.
  • Code segments with broken up lines
peakdef = peakstruct(,3);
disp(peakdef(2))
peakdef(2) = peakstruct('PVoigt1');
SOLUTION: remove blank lines between code lines
  • Example segments using : indenting instead of prefix of spaces or "pre" tags
     ===Examples===
     :peakdef = peakstruct('',3);
     :disp(peakdef(2))
     :peakdef(2) = peakstruct('PVoigt1');
SOLUTION: delete : and convert to <pre> tags