excel2latex/index.html

52 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Excel => LaTeX</title>
<link href="style.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35920304-1']);
_gaq.push(['_setDomainName', 'ericwood.org']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<a href="https://github.com/eric-wood/excel2latex"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div class="center">
<h1 class="title">excel => LaTeX</h1>
<h4 class="info">Drag any .xlsx file onto the page to extract data and convert it into a LaTeX table</h4>
<div class="content">
<label for="workbook">Workbook:</label>
<select id="workbook" name="workbook"></select>
<textarea id="latex-output" readonly="readonly" onclick="this.select();"></textarea>
<div class="settings">
<input type="checkbox" name="escape" id="escape" checked="checked">
<label for="escape">Escape input text</label>
</div>
<p>Mostly untested, so if you find a bug or have a feature request, <a href="https://github.com/eric-wood/excel2latex/issues">let me know!</a>
<p class="disclaimer">Note: this only works with .xlsx files. That means .xls files will <b>not</b> work.</p>
<p>Formatting from the Excel document won't be preserved, only the text will be extracted.</p>
<p>Lovingly hacked together by <a href="http://ericwood.org">Eric Wood</a></p>
</div>
<h4>Preview</h4>
<div id="preview">$$ \LaTeX $$</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="zip/zip.js"></script>
<script type="text/javascript" src="converter.js"></script>
</body>
</html>