This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" /> | |
<html> | |
<head> | |
<title>LIGO CIT Journal Club</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> | |
</head> | |
<body> | |
<h1><a href="https://wiki-40m.ligo.caltech.edu/Journal_Club">LIGO CIT Journal Club</a></h1> | |
<h2>Upcoming presenters:</h2> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
an app which takes latex expression as input, then can numerically evaluate, including units and constants. | |
called plug and chug? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
var basicdiv = document.getElementById('BasicDocInfo'); | |
var dccnum = basicdiv.childNodes[1].childNodes[2].childNodes[0].innerHTML.split('-')[1]; | |
var numauthors = document.getElementById('Authors').childNodes[1].childNodes.length; | |
var authors = new Array(); | |
for(var j=0;j<numauthors;j++){ | |
authors[j] = document.getElementById('Authors').childNodes[1].childNodes[j].childNodes[0].innerHTML; | |
}; | |
var title = document.getElementById('DocTitle').childNodes[1].innerHTML; | |
var dateels = basicdiv.childNodes[1].childNodes[17].innerHTML.split('%20'); |