diff --git a/6002x-faq.html b/6002x-faq.html
index ccbe473b4e..475e0312c8 100644
--- a/6002x-faq.html
+++ b/6002x-faq.html
@@ -55,10 +55,19 @@ assignments and exams.
I just enrolled for the course. I have not received any form
of acknowledgement that I have enrolled.
- You should receive a single activation e-mail. If you did not,
-check your spam folder, or try to register again with your correct
-e-mail address and a new username (most errors are from typos in
-e-mail addresses).
+ You should receive a single activation e-mail. If you did not, the
+most common issues are:
+
+- Typo in e-mail address
+
- Old browser. We recommend trying a modern version of Firefox or Chrome
+
- JavaScript disabled
+
- Activation e-mail in spam folder. Check spam folder.
+
- Non-unique username. Try adding a random string at the end.
+
+
+If you run into issues, try recreating your account. There is no need
+to do anything about the old account, if any. If it is not activated
+through the link in the e-mail, it will disappear later.
How do I drop the course?
diff --git a/book_toc.html b/book_toc.html
index 44904d8f60..35ef650b21 100644
--- a/book_toc.html
+++ b/book_toc.html
@@ -1,339 +1,356 @@
+ Contents ix
+ Preamble i
+
- The Circuit Abstraction
- A1 Maxwell's Equations and the LMD 927
+ B Trigonometric Functions & Identities 941
+ C Complex Numbers 947
+ D Solving Simultaneous Linear Equations 957
+
+
+ Answers to Selected Problems 959
+ Figure Acknowledgments 971
+ Index 973
diff --git a/profile_graphs.js b/profile_graphs.js
index 073f3cda2e..502c3c1469 100644
--- a/profile_graphs.js
+++ b/profile_graphs.js
@@ -127,7 +127,7 @@ $(function () {
var plot = $.plot($grade_detail_graph, series, options);
var o = plot.pointOffset({x: ${overviewBarX} , y: ${totalScore}});
- $grade_detail_graph.append('${"{:.0%}".format(totalScore)}
');
+ $grade_detail_graph.append('${"{totalscore:.0%}".format(totalscore=totalScore)}
');
// //Rotate the x-axis labels
// var rotateValue = "rotate(-60deg)";
diff --git a/staticbook.html b/staticbook.html
index a9afbede22..6e080f5165 100644
--- a/staticbook.html
+++ b/staticbook.html
@@ -16,19 +16,19 @@ function goto_page(n) {
if(n<10) {
prefix="00";
}
- $("#bookpage").attr("src","${ settings.BOOK_URL }p"+prefix+n+".jpg");
+ $("#bookpage").attr("src","${ settings.BOOK_URL }p"+prefix+n+".png");
};
function prev_page() {
var newpage=page-1;
- if(newpage<1) newpage=1;
+ if(newpage<0) newpage=0;
goto_page(newpage);
log_event("book", {"type":"prevpage","new":page});
}
function next_page() {
var newpage=page+1;
- if(newpage>1764) newpage=1764;
+ if(newpage>1008) newpage=1008;
goto_page(newpage);
log_event("book", {"type":"nextpage","new":page});
}
@@ -56,7 +56,7 @@ function next_page() {
-
+