### Configuration and Layout Source: https://www.nomnoml.com/ Examples of setting fonts, spacing, and tables. ```nomnoml #font: Times Text with serifs ``` ```nomnoml #fontSize: 8 #spacing: 12 #padding: 3 [Lorem ipsum]-[dolor sit amet] ``` ```nomnoml [Fruits| Apples | 17 || Oranges | 4711 ] ``` -------------------------------- ### Car Diagram Examples Source: https://www.nomnoml.com/ Practical examples of modeling relationships and attributes. ```nomnoml [Car]->[Engine] ``` ```nomnoml [Car] +-> 0..* [RustPatch] ``` ```nomnoml [Car]o->[Manufacturer] [Car]<:-[Pickup] ``` ```nomnoml [Car|speed: Number;valves: Valve\[\] ] ``` ```nomnoml [Engine||start()] ``` ```nomnoml [Engine| [Cylinder]->1[Piston] [Cylinder]->2[Valve] ] ``` ```nomnoml [Engine] - [Tank] [Tank] -->o [Big Fuel Tank] ``` -------------------------------- ### Define Class Structure and Composition Source: https://www.nomnoml.com/ Examples of defining classes, attributes, operations, and internal components. ```nomnoml [Pirate| [beard]--[parrot] [beard]-:>[foul mouth] ] ``` ```nomnoml [
mischief| bawl | sing || yell | drink ] ``` ```nomnoml [Marauder]<:--[Pirate] ``` ```nomnoml [Pirate] - 0..7[mischief] ``` ```nomnoml [Jolly;Sailor] ``` ```nomnoml [sailor]->[Pirate] ``` ```nomnoml [sailor]->[rum] ``` ```nomnoml [Pirate]-> *[rum|tastiness: Int|swig()] ``` -------------------------------- ### Define Flow Chart Nodes and Transitions Source: https://www.nomnoml.com/ Examples of defining flow chart elements and their connections. ```nomnoml [start] -> [plunder] -> [more loot] -> [start] ``` ```nomnoml [more loot] no ->[e] ``` -------------------------------- ### Custom Classifier Styles Source: https://www.nomnoml.com/ Defining custom styles using directives starting with a dot. ```nomnoml #.box: fill=#8f8 dashed #.blob: visual=ellipse title=bold [ GreenBox] [ Blobby] ``` -------------------------------- ### Component Diagram Types Source: https://www.nomnoml.com/ Syntax for component and socket/lollipop connections. ```nomnoml [Component] - [ socket] ``` ```nomnoml [ lollipop] - [Component] ``` -------------------------------- ### Custom Styles and Imports Source: https://www.nomnoml.com/ Defining styles and importing them across files. ```nomnoml #.box: fill=#8f8 dashed [ GreenBox] ``` ```nomnoml #.blob: fill=pink #import: blobby_styles [ Blobby] ``` -------------------------------- ### Use Case Types Source: https://www.nomnoml.com/ Syntax for actors and use cases. ```nomnoml [ actor] ``` ```nomnoml [ usecase] ``` -------------------------------- ### Class Diagram Types Source: https://www.nomnoml.com/ Basic syntax for various class diagram elements. ```nomnoml [class] ``` ```nomnoml [ abstract] ``` ```nomnoml [ instance] ``` ```nomnoml [ reference] ``` ```nomnoml [ package|components] ``` ```nomnoml [ frame|] ``` -------------------------------- ### Comments Source: https://www.nomnoml.com/ Syntax for adding comments to the diagram definition. ```nomnoml //[commented] [not //commented] ``` -------------------------------- ### Miscellaneous Types Source: https://www.nomnoml.com/ Additional node types for notes, labels, and containers. ```nomnoml [ note] ``` ```nomnoml [
table| a | 5 || b | 7] ``` -------------------------------- ### Flow Chart Types Source: https://www.nomnoml.com/ Standard flow chart node types. ```nomnoml [ start] ``` ```nomnoml [ end] ``` ```nomnoml [ state] ``` ```nomnoml [ choice] ``` ```nomnoml [ sync] ``` ```nomnoml [ input] ``` ```nomnoml [ sender] ``` ```nomnoml [ receiver] ``` ```nomnoml [ transceiver] ``` -------------------------------- ### Id Attribute Source: https://www.nomnoml.com/ Using the id attribute to distinguish nodes with the same display name. ```nomnoml [User] [User] [a] -- [b] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.