To: | Do the following: |
|---|---|
Pages | Select the pages of plots and animations you want exported. If you select Range, enter the pages you want included. |
Image Format | Enter the image format in which to store the pages of plots. You can select png or jpg. |
Image Width and Height | Enter the pixel size of the exported pages. By default, Adams PostProcessor maintains the aspect ratio of the images so if you enter a value for width, Adams PostProcessor automatically calculates the height based on the current aspect ratio, and the reverse. See Maintain Aspect Ratio below. If you leave both text boxes blank, Adams PostProcessor uses their default size in Adams PostProcessor. |
Maintain Aspect Ratio | Clear to change the proportions of the page sizes, and then enter new values for Image Width and Height (see above). |
Export Animations | Select to export the animations as a movie. Clear to just save an image of the first frame of the animation in the same format selected in Image Format. |
Movie Format | Select the type of movie to export the animation as. You can select: Compressed .avi, Uncompressed .avi, .jpg, .mpg, and .png (AVI format is only available on Windows). ■If you select .jpg or .png, Adams Processor, exports each frame as an png or jpg file, and then plays them as a movie. ■If you select compressed AVI format, set the frame rate, interval between key frames, and quality (percentage of compression). The default is 75% compression with each key frame 500 frames apart, and a frame rate of 10 seconds per frame. ■If you select .mpg, set options to be able to play the movie in many playback programs. For more on these options, see Recording Animations. |
and Replace Simulations command. They check the dates of the report files on disk and reload them if the file date has changed. Learn about Updating Plot Data.The tag: | Represents: |
|---|---|
<h1>...</h1> | Top-level heading. |
<h2>...</h2> | Sub-level heading. |
<h3>...</h3> | Sub-sub-level heading. |
<p>...</p> | Left-aligned paragraph. Adjust the alignment with the align attribute. Possible values are left, right and center. |
<center>...</center> | Centered paragraph. |
<blockquote>...</blockquote> | Indented paragraph. |
<ul>...</ul> | Unordered list. |
<ol>...</ol> | Ordered list. You can also define the enumeration label using the type attribute. The default is type="1"; other types are "a" and "A". |
<li>...</li> | List item. |
<pre>...</pre> | Leaves the information as is with no formatting. Preserves white spaces in the content. |
The tag: | Represents: |
|---|---|
<em>...</em> | Emphasized. |
<strong>...</strong> | Strong. |
<i>...</i> | Italic font style. |
<b>...</b> | Bold font style. |
<u>...</u> | Underlined font style. |
<big>...</big> | Larger font size. |
<small>...</small> | Smaller font size. |
<code>...</code> | Indicates code. |
<tt>...</tt> | Typewriter font style. |
<font>...</font> | Information on fonts, including color, size, and type (face). The tag understands the following attributes: ■color - The text color, for example: color="#FF0000" ■size - The logical size of the font. Logical sizes 1 to 7 are supported. The value can either be absolute (for example, size=3) or relative (size=-2). ■face - The family of the font, for example: face=times |
The tag: | Represents: |
|---|---|
<img> | An image. The image name is given in the source attribute, for example: <img src="qt.xpm" /> The image tag also understands the attributes width and height, which determine the size of the image. |
<hr> | Horizontal line. |
<br> | Line break. |
<nobr>...</nobr> | No break. |
The tag: | Represents: |
|---|---|
<table>...</table> | A table definition. Other attributes are: ■bgcolor - Background color. ■width - Table width. Can be a percentage or actual number of pixels. ■border - Width of the table border. ■cellspacing - Additional space around the table cells. ■cellpadding - Additional space around the contents of table cells. |
<tr>...</tr> | A table row that can only be used within table. It has the attribute: ■bgcolor - Background color. |
<td>...</td> | A table data cell with the following attributes: ■bgcolor - Background color. ■width - Cell width. Can be a percentage or actual number of pixels. ■colspan - How many columns this cell spans. ■rowspan - How many rows this cell spans. ■align - Alignment. |
<th>...</th> | Table header cell. |