-
Notifications
You must be signed in to change notification settings - Fork 26
/
citing.html
178 lines (164 loc) · 6.04 KB
/
citing.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html>
<title>Citing Group Explorer 3.0</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style/w3.css">
<link rel="stylesheet" href="style/w3-theme-blue.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
<body>
<!-- Side Navigation -->
<!--
<nav class="w3-sidebar w3-bar-block w3-card w3-animate-left w3-center" style="display:none" id="mySidebar">
<h1 class="w3-xxxlarge w3-text-theme">Side Navigation</h1>
<button class="w3-bar-item w3-button" onclick="w3_close()">Close <i class="fa fa-remove"></i></button>
<a href="#" class="w3-bar-item w3-button">Link 1</a>
<a href="#" class="w3-bar-item w3-button">Link 2</a>
<a href="#" class="w3-bar-item w3-button">Link 3</a>
<a href="#" class="w3-bar-item w3-button">Link 4</a>
</nav>
-->
<!-- Header -->
<header class="w3-container w3-theme w3-padding" id="myHeader">
<!--<i onclick="w3_open()" class="fa fa-bars w3-xlarge w3-button w3-theme"></i>-->
<div class="w3-center">
<h1 class="w3-xxxlarge">Citing Group Explorer 3.0</h1>
<h4>Visualization software for the abstract algebra classroom</h4>
<p><i class="fa fa-arrow-circle-left"></i> <a href='index.html'>Return to main page</a></p>
</div>
</div>
</header>
<div class="w3-row w3-border">
<div class="w3-col s3 w3-container">
</div>
<div class="w3-col s6 w3-container">
<p>If you use Group Explorer to create images or find information that you use in a paper or presentation, please cite it in one of the following ways. It seems to me that the online help can be considered either part of the software or part of the website, since it appears in both.</p>
<h2>Citing the software itself</h2>
<p>Example in APA style:</p>
<blockquote>
<p>Carter, N. & Ellis, R. (2019). Group Explorer, Version 3.0 [computer software]. Waltham, MA.</p>
</blockquote>
<p>Example BibTeX entry:</p>
<blockquote>
<pre>@Manual{PutYourKeyHere,
title = {Group Explorer version 3.0},
author = {Nathan Carter and Ray Ellis},
address = {Waltham, MA},
year = {2019},
url = {https://github.com/nathancarter/group-explorer},
}</pre>
</blockquote>
<h2>Citing the website</h2>
<p>Example in APA style:</p>
<blockquote>
<p>Carter, N. & Ellis, R. (2019). <em>Group Explorer.</em> Retrieved May 11, 2019, from https://nathancarter.github.io/group-explorer/.</p>
</blockquote>
<p>(You should fill in the date you view it, rather than the example date above.)</p>
<p>Example BibTeX entry: </p>
<blockquote>
<pre>@webpage{PutYourKeyHere,
Author = {Nathan Carter and Ray Ellis},
Lastchecked = {May 11, 2019},
Title = {Group Explorer},
Url = {\url{https://nathancarter.github.io/group-explorer/}},
Year = {2019}
}</pre>
</blockquote>
<h2>Citing the JOMA article about GE</h2>
<p>The article can be <a href="http://mathdl.maa.org/mathDL/4/?pa=content&sa=viewDocument&nodeId=684">seen online here</a>, and it can be cited like this.</p>
<p>Example in APA style:</p>
<blockquote>
<p>Carter, N., Emmons, B. (2005). Group Theory Visualization with Group Explorer. <em>Journal of Online Mathematics and its Applications.</em> Retrieved May 11, 2007, from http://mathdl.maa.org/mathDL/4/?pa=content&sa=viewDocument&nodeId=684.</p>
</blockquote>
<p>(You should fill in the date you view it, rather than the example date above.)</p>
<p>Example BibTeX entry:</p>
<blockquote>
<pre>@article{PutYourKeyHere,
Author = {Nathan Carter and Brad Emmons},
Journal = {Journal of Online Mathematics and its Applications},
Title = {Group Theory Visualization with {G}roup {E}xplorer},
Url = {\url{http://mathdl.maa.org/mathDL/4/?pa=content&sa=viewDocument&nodeId=684}},
Year = {2005}
}</pre>
</blockquote>
</div>
<div class="w3-col s3 w3-container">
</div>
</div>
<!-- Footer -->
<footer class="w3-container w3-blue w3-padding-16">
<p>Based on a <a href="https://www.w3schools.com/w3css/default.asp" target="_blank">w3.css</a> template.
Thanks to them for sharing!</p>
</footer>
<!-- Script for Sidebar, Tabs, Accordions, Progress bars and slideshows -->
<script>
// Side navigation
function w3_open() {
var x = document.getElementById("mySidebar");
x.style.width = "25%";
x.style.fontSize = "40px";
x.style.paddingTop = "10%";
x.style.display = "block";
}
function w3_close() {
document.getElementById("mySidebar").style.display = "none";
}
// Tabs
function openCity(evt, cityName) {
var i;
var x = document.getElementsByClassName("city");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
var activebtn = document.getElementsByClassName("testbtn");
for (i = 0; i < x.length; i++) {
activebtn[i].className = activebtn[i].className.replace(" w3-dark-grey", "");
}
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " w3-dark-grey";
}
var mybtn = document.getElementsByClassName("testbtn")[0];
mybtn.click();
// Accordions
function myAccFunc(id) {
var x = document.getElementById(id);
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
// Slideshows
var slideIndex = 1;
function plusDivs(n) {
slideIndex = slideIndex + n;
showDivs(slideIndex);
}
function showDivs(n) {
var x = document.getElementsByClassName("mySlides");
if (n > x.length) {slideIndex = 1}
if (n < 1) {slideIndex = x.length} ;
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex-1].style.display = "block";
}
showDivs(1);
// Progress Bars
function move() {
var elem = document.getElementById("myBar");
var width = 5;
var id = setInterval(frame, 10);
function frame() {
if (width == 100) {
clearInterval(id);
} else {
width++;
elem.style.width = width + '%';
elem.innerHTML = width * 1 + '%';
}
}
}
</script>
</body>
</html>