-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (60 loc) · 2.38 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Kumar's Asymptote Examples</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<link href="https://fonts.googleapis.com/css?family=Crimson+Text" rel="stylesheet">
<style>
body {
font-family: 'Crimson Text', serif;
font-size : 2em ;
}
img {
border: 1px solid #ddd;
padding: 5px;
}
.nametitle {
text-align : left ;
}
@media screen and (max-width: 48em) {
.nametitle {
text-align: center;
}
}
</style>
</head>
<body>
<div class="container">
<div class="page-header"><h2>Introduction</h2></div>
<p>This is a collection of some graphics and animations made using <a href="https://asymptote.sourceforge.io/">Asymptote</a>.</p>
<div class="page-header"><h2>Examples</h2></div>
<h3>Fonts using <a href="https://wiki.contextgarden.net/Main_Page">ConTeXt</a></h3>
<p>Source: <a href="fonttest2.asy">fonttest2.asy</a></p>
<p><img width="40%" src="fonttest2.svg" alt="fonttest2"/></p>
<hr/>
<h3>QPSK depiction</h3>
<p>Source: <a href="qpsk.asy">qpsk.asy</a></p>
<p>
<img width="40%" src="qpsk1.svg" alt="qpsk1"/>
<img width="40%" src="qpsk2.svg" alt="qpsk2"/>
<img width="40%" src="qpsk3.svg" alt="qpsk3"/>
<img width="40%" src="qpsk4.svg" alt="qpsk4"/>
</p>
<h3>QPSK graphs</h3>
<p>Source: <a href="qpskgraphs.asy">qpskgraphs.asy</a></p>
<p>
<img width="40%" src="qpskgraphs.svg" alt="qpskgraphs"/>
</p>
</body>
</html>