### Math Function Examples Source: https://cad.onshape.com/help/Content/Home/numeric_fields.htm?TocPath=Getting+Started+with+Onshape%7CUser+Interface+Basics%7C_____6 Examples of using various math functions supported in Onshape numeric fields, including basic arithmetic, absolute value, max, and square root. ```Onshape Expressions 2^3 ``` ```Onshape Expressions abs(-4) ``` ```Onshape Expressions max(2, 3) ``` ```Onshape Expressions (sqrt(2in * 3mm)) and sqrt(4 in^2) ``` ```Onshape Expressions exp(2) ``` -------------------------------- ### Markdown Heading Examples Source: https://cad.onshape.com/help/Content/Document/publications.htm Demonstrates various ways to format headings using Markdown, including underline styles and hash prefixes. ```markdown Heading 1 ============ ``` ```markdown Heading 2 -------------- ``` ```markdown # This is also a heading 1 ``` ```markdown ## This is a heading 2 ``` ```markdown ###### This is a heading 6 ``` ```markdown # This is also a heading 1# ``` ```markdown ## This is also a heading 2## ``` ```markdown ### This is also a heading 3### ```