WOLFRAM SYSTEM MODELER

Lists

Lists

Wolfram Language

In[1]:=
SystemModel["Modelica.UsersGuide.Conventions.Documentation.Format.Lists"]
Out[1]:=

Information

This information is part of the Modelica Standard Library maintained by the Modelica Association.

  1. Lists have to be placed outside of paragraphs to be HTML compliant.
  2. Items of a list shall start with
    1. a capital letter if each item is a full sentence
    2. a small letter, if only text fragments are used or the list is fragment of a sentence

Examples

Example 1

This is a simple example of an enumerated (ordered) list

<ol>
  <li>item 1</li>
  <li>item 2</li>
</ol>

appears as

  1. item 1
  2. item 2
Example 2

This is a simple example of an unnumbered list.

<ul>
  <li>item 1</li>
  <li>item 2</li>
</ul>

appears as

  • item 1
  • item 2