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.

Lists have to be placed outside of paragraphs to be HTML compliant.

  1. Items of a list shall start with
    • a capital letter if each item is a full sentence
    • a small letter, if only text fragments are used or the list is fragment of a sentence
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