Skip to content

Commit 16a7533

Browse files
committed
fix equations
1 parent a2b6a54 commit 16a7533

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

examples/using react and other custom scripts and styles/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It integrates a simple [react](https://reactjs.org/) component and loads it with
1111

1212
![example client-side reactive SQLPage application with React](screenshot-react.png)
1313

14-
![example math equations](screenshot-math-equations.png)
14+
![example physics equations](screenshot-latex-math-equations.png)
1515

1616

1717
## Notes

examples/using react and other custom scripts and styles/equations.sql

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,15 @@ select
1818
'arrow-right' as icon;
1919
select
2020
'Force' as title,
21-
'The force \( \overrightarrow{F} \) acting on a body is equal to the mass \( m \) of the body multiplied by the acceleration
22-
\( \overrightarrow{a} = \frac{\mathrm{d}}{\mathrm{d} t} \overrightarrow{v} \) of the body.' as description,
21+
'The acceleration \( \overrightarrow{a} \) of a body is directly proportional to the net force \( \overrightarrow{F_{\text{net}}} \) acting on the it, and inversely proportional to its mass \( m \):
22+
\( \overrightarrow{F_{\text{net}}} = m \overrightarrow{a} \), or
23+
\( \sum \overrightarrow F = m \frac{\mathrm d \overrightarrow v }{\mathrm d t} \).' as description,
2324
'rocket' as icon,
2425
'red' as color;
2526
select
2627
'Action and reaction' as title,
27-
'For every action, there is an equal and opposite reaction. If body A exerts a force \( \overrightarrow{F_{\text{A on B}}} \) on body B, then body B exerts a force \( \overrightarrow{F_{\text{B on A}}} \) on body A.' as description,
28+
'For every action, there is an equal and opposite reaction.
29+
If body A exerts a force \( \overrightarrow{F_{\text{A on B}}} \) on body B,
30+
then body B exerts a force \( \overrightarrow{F_{\text{B on A}}} = -\overrightarrow{F_{\text{A on B}}} \) on body A.' as description,
2831
'arrows-exchange' as icon,
2932
'orange' as color;

0 commit comments

Comments
 (0)