-
Notifications
You must be signed in to change notification settings - Fork 0
/
physics_E5_fusion_stars.html
164 lines (150 loc) · 8.09 KB
/
physics_E5_fusion_stars.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Physics Fusion and Stars Equations for IB Curriculum | Pangram World" />
<meta property="og:description"
content="Find a curated list of essential Physics Fusion and Stars Equations tailored for the IB curriculum at Pangram World. Effortlessly access and copy equations in LaTeX, or basic form, ideal for students and educators in the field of physics." />
<meta property="og:image" content="https://www.pangram-world.com/images/pangram-world-title.png" />
<meta property="og:url" content="https://www.pangram-world.com/physics_E5_fusion_stars.html" />
<title>Physics Fusion and Stars Equations | Pangram World</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="style/bootstrap.css">
<link rel="stylesheet" href="style/styles.css">
<link rel="stylesheet" href="style/base.css">
<link rel="stylesheet" href="style/cards.css">
<link rel="stylesheet" href="style/symbols_physics.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- ... favicon ... -->
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="images/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="images/android-chrome-512x512.png">
<script src="scripts/main.js" defer></script>
<script src="scripts/bootstrap.bundle.js"></script>
<script src="https://kit.fontawesome.com/18fe617275.js" crossorigin="anonymous"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script src="scripts/html2canvas.min.js"></script>
<!-- Add any additional meta tags and scripts here -->
</head>
<body>
<!-- Main content area where your page content will go -->
<header id="globalHeader"></header>
<main>
<h2>Copy Fusion and Stars Equations</h2>
<p class="info-text">
Click the LaTeX buttons to copy LaTeX code for use in your projects or paste into the LaTeX PNG generator
below. For
instant use in documents or on social media, or you can copy the basic formatted equations.
</p>
<small>
<em>Note: The LaTeX PNG generator may not display images correctly in Firefox. For the best experience,
please use
Chrome or Edge browsers.</em>
<br>
<button type="button" class="btn btn-info" data-bs-toggle="modal" data-bs-target="#instructionModal">
<i class="far fa-question-circle red"></i>
</button>
<p><em><small>Note: Some limitations exist in the basic form, as subscripts are not always
available.</small></em></p>
<!-- LaTeX Form -->
<section>
<h3>C.2 Wave Model Equations - LaTeX</h3>
<div class="equation-grid">
<div class="equation-grid">
<div class="equation-container"> <div class="equation">
\( v = f \lambda = \frac{\lambda}{T} \)
</div>
<button class="symbol-btn equation-btn" data-symbol="v = f \lambda = \frac{\lambda}{T}">
Copy LaTeX
</button>
<div class="copied-overlay">Copied!</div>
</div>
</section>
</div>
<!-- Basic Form -->
<section>
<h3>C.2 Wave Model Equations - Basic</h3>
<div class="equation-grid">
<div class="equation-grid">
<div class="equation-container">
<div class="equation">v = fλ = λ/T
</div>
<button class="symbol-btn equation-btn" data-symbol="v = fλ = λ/T">
Copy Text
</button>
<div class="copied-overlay">Copied!</div>
</div>
</section>
<section>
<h3>Make your own LaTeX</h3>
<div class="equation-grid">
<input type="text" id="latexInput" class="form-control mb-2" placeholder="Enter LaTeX here">
<!-- Use a row to contain the selects and button -->
<div class="row g-2 mb-2"> <!-- 'g-2' adds some gap between the columns -->
<!-- Bootstrap Select for Background Selection -->
<div class="col-sm"> <!-- 'col-sm' will stack on small screens and be horizontal on larger ones -->
<select class="form-select form-select-sm" aria-label="Select Background" id="backgroundSelect">
<option value="transparent" selected>Transparent</option>
<option value="white">White</option>
</select>
</div>
<!-- Bootstrap Select for Size Selection -->
<div class="col-sm">
<select class="form-select form-select-sm" aria-label="Select Size" id="sizeSelect">
<option value="small">Small</option>
<option value="normal" selected>Normal</option>
<option value="large">Large</option>
<option value="veryLarge">Very Large</option>
<option value="huge">Huge</option>
</select>
</div>
<div class="row">
<div class="col-sm-auto"> <!-- This column will auto-size to the content width -->
<button class="btn btn-primary" id="renderButton">Render PNG</button>
</div>
</div>
</div>
<div id="mathContainer"></div>
<!-- Container where the copy button will be placed -->
<div id="latexCopyContainer" class="mt-2 mb-2"></div>
<img id="resultImage" style="display:none; max-width:100%; height:auto;">
<a id="downloadLink" href="#" style="display:none;"></a> <!-- Download link will be here -->
</div>
</section>
<!-- Scroll to Top button (hidden by default with inline style.css) -->
<button onclick="scrollToTop()" id="scrollToTopButton"
style="display: none; position: fixed; bottom: 20px; right: 20px;"><i
class="fas fa-arrow-up"></i></button>
<!-- Modal -->
<div class="modal fade" id="instructionModal" tabindex="-1" aria-labelledby="instructionModalLabel"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="instructionModalLabel">How to Use</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
Click on any equation button to copy the LaTeX code. Then, paste it into the LaTeX generator
below and
click 'Render PNG'. A beautiful PNG image will be generated for you to copy or download,
completely
free!
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</main>
<footer id="globalFooter"></footer>
<script src="scripts/symbols.js"></script>
<script src="scripts/symbolsLatex.js"></script>
</body>
</html>