Spaces:
Running
Running
Update index.html
Browse files- index.html +109 -21
index.html
CHANGED
|
@@ -4,36 +4,125 @@
|
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
<title>StatProver - Automated Statistical Proof Assistant</title>
|
| 7 |
-
<link
|
| 8 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
body {
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
margin: 0 auto;
|
| 14 |
-
padding:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
}
|
| 16 |
-
|
| 17 |
-
|
|
|
|
| 18 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</style>
|
| 20 |
</head>
|
| 21 |
-
<body
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
<script type="text/markdown" id="md-source">
|
| 25 |
|
| 26 |
|
| 27 |
-
|
| 28 |
-

|
| 29 |
-
|
| 30 |
-
<p align="center">
|
| 31 |
-
<b>An Automated Statistical Proof Assistant</b>
|
| 32 |
-
</p>
|
| 33 |
-
|
| 34 |
-
**StatProver** is developed by **[StatAI Lab](https://statai-lab.github.io/)**, led by **[Prof. Fan Zhou](https://mlzxzhou.github.io/)** at the School of Statistics and Data Science, Shanghai University of Finance and Economics. As part of the lab’s broader research on statistical reasoning with large language models, this project reflects our efforts to build reliable AI systems for rigorous statistical proofs.
|
| 35 |
-
|
| 36 |
-
|
| 37 |
## What StatProver Does
|
| 38 |
|
| 39 |
StatProver provides a structured workflow for automated proof generation and self-correction, helping users transform a statistical proposition or source document into a complete LaTeX proof.
|
|
@@ -104,11 +193,10 @@ If you have any questions or are interested in collaboration, please feel free t
|
|
| 104 |
* **[Prof. Fan Zhou](https://mlzxzhou.github.io/)** (Project Leader): [zhoufan@mail.shufe.edu.cn](mailto:zhoufan@mail.shufe.edu.cn)
|
| 105 |
|
| 106 |
</script>
|
|
|
|
| 107 |
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
| 108 |
<script>
|
| 109 |
-
// 获取 Markdown 文本并去除首尾空白
|
| 110 |
const mdText = document.getElementById('md-source').innerHTML.trim();
|
| 111 |
-
// 渲染到页面上
|
| 112 |
document.getElementById('content').innerHTML = marked.parse(mdText);
|
| 113 |
</script>
|
| 114 |
</body>
|
|
|
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
<title>StatProver - Automated Statistical Proof Assistant</title>
|
| 7 |
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
|
| 8 |
<style>
|
| 9 |
+
:root {
|
| 10 |
+
--primary: #059669; /* 提取自你 Logo 的科技绿 */
|
| 11 |
+
--primary-dark: #047857;
|
| 12 |
+
--text-main: #1f2937;
|
| 13 |
+
--text-light: #6b7280;
|
| 14 |
+
--bg: #ffffff;
|
| 15 |
+
}
|
| 16 |
body {
|
| 17 |
+
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
| 18 |
+
color: var(--text-main);
|
| 19 |
+
background: var(--bg);
|
| 20 |
+
margin: 0;
|
| 21 |
+
padding: 0;
|
| 22 |
+
line-height: 1.7;
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
/* 👇 头部居中区域 (Hero Section) */
|
| 26 |
+
.hero {
|
| 27 |
+
text-align: center;
|
| 28 |
+
padding: 80px 20px 60px;
|
| 29 |
+
background: linear-gradient(to bottom, #f0fdf4, #ffffff); /* 淡淡的绿色渐变背景 */
|
| 30 |
+
border-bottom: 1px solid #e5e7eb;
|
| 31 |
+
}
|
| 32 |
+
.hero img {
|
| 33 |
+
max-width: 280px;
|
| 34 |
+
margin-bottom: 24px;
|
| 35 |
+
}
|
| 36 |
+
.hero h1 {
|
| 37 |
+
font-size: 2.8rem;
|
| 38 |
+
font-weight: 800;
|
| 39 |
+
margin: 0 0 16px;
|
| 40 |
+
color: #111827;
|
| 41 |
+
letter-spacing: -0.02em;
|
| 42 |
+
}
|
| 43 |
+
.hero p.subtitle {
|
| 44 |
+
font-size: 1.25rem;
|
| 45 |
+
color: var(--text-light);
|
| 46 |
+
max-width: 700px;
|
| 47 |
+
margin: 0 auto 35px;
|
| 48 |
+
}
|
| 49 |
+
/* 抢眼的引流按钮 */
|
| 50 |
+
.cta-button {
|
| 51 |
+
display: inline-block;
|
| 52 |
+
background-color: var(--primary);
|
| 53 |
+
color: white !important;
|
| 54 |
+
padding: 16px 40px;
|
| 55 |
+
border-radius: 50px; /* 圆角按钮更显现代 */
|
| 56 |
+
text-decoration: none;
|
| 57 |
+
font-weight: 600;
|
| 58 |
+
font-size: 1.15rem;
|
| 59 |
+
transition: all 0.3s ease;
|
| 60 |
+
box-shadow: 0 4px 14px 0 rgba(5, 150, 105, 0.39);
|
| 61 |
+
}
|
| 62 |
+
.cta-button:hover {
|
| 63 |
+
background-color: var(--primary-dark);
|
| 64 |
+
transform: translateY(-2px);
|
| 65 |
+
box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
/* 👇 下方内容阅读区 */
|
| 69 |
+
.content-container {
|
| 70 |
+
max-width: 850px;
|
| 71 |
margin: 0 auto;
|
| 72 |
+
padding: 50px 20px 80px;
|
| 73 |
+
}
|
| 74 |
+
.content-container h2 {
|
| 75 |
+
font-size: 1.8rem;
|
| 76 |
+
font-weight: 600;
|
| 77 |
+
border-bottom: 2px solid #f3f4f6;
|
| 78 |
+
padding-bottom: 12px;
|
| 79 |
+
margin-top: 45px;
|
| 80 |
+
color: #111827;
|
| 81 |
}
|
| 82 |
+
.content-container h3 {
|
| 83 |
+
font-size: 1.4rem;
|
| 84 |
+
margin-top: 35px;
|
| 85 |
}
|
| 86 |
+
.content-container p {
|
| 87 |
+
font-size: 1.1rem;
|
| 88 |
+
color: #4b5563;
|
| 89 |
+
}
|
| 90 |
+
.content-container a {
|
| 91 |
+
color: var(--primary);
|
| 92 |
+
text-decoration: none;
|
| 93 |
+
font-weight: 500;
|
| 94 |
+
}
|
| 95 |
+
.content-container a:hover {
|
| 96 |
+
text-decoration: underline;
|
| 97 |
+
}
|
| 98 |
+
/* 优化代码块显示 */
|
| 99 |
+
pre { background: #f3f4f6; padding: 15px; border-radius: 8px; overflow-x: auto; }
|
| 100 |
+
code { font-family: ui-monospace, monospace; font-size: 0.9em; }
|
| 101 |
</style>
|
| 102 |
</head>
|
| 103 |
+
<body>
|
| 104 |
+
|
| 105 |
+
<div class="hero">
|
| 106 |
+
<img src="https://raw.githubusercontent.com/StatAI-Lab/StatProver_doc/main/figs/logo.png" alt="StatProver Logo" onerror="this.style.display='none'">
|
| 107 |
+
|
| 108 |
+
<h1>StatProver</h1>
|
| 109 |
+
|
| 110 |
+
<p class="subtitle">
|
| 111 |
+
An Automated Statistical Proof Assistant developed by **[StatAI Lab](https://statai-lab.github.io/)**, led by **[Prof. Fan Zhou](https://mlzxzhou.github.io/)** at the School of Statistics and Data Science, Shanghai University of Finance and Economics.
|
| 112 |
+
</p>
|
| 113 |
+
|
| 114 |
+
<a href="https://statprover.com" target="_blank" class="cta-button">
|
| 115 |
+
Launch StatProver
|
| 116 |
+
</a>
|
| 117 |
+
</div>
|
| 118 |
+
|
| 119 |
+
<div class="content-container" id="content">
|
| 120 |
+
加载中...
|
| 121 |
+
</div>
|
| 122 |
|
| 123 |
<script type="text/markdown" id="md-source">
|
| 124 |
|
| 125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
## What StatProver Does
|
| 127 |
|
| 128 |
StatProver provides a structured workflow for automated proof generation and self-correction, helping users transform a statistical proposition or source document into a complete LaTeX proof.
|
|
|
|
| 193 |
* **[Prof. Fan Zhou](https://mlzxzhou.github.io/)** (Project Leader): [zhoufan@mail.shufe.edu.cn](mailto:zhoufan@mail.shufe.edu.cn)
|
| 194 |
|
| 195 |
</script>
|
| 196 |
+
|
| 197 |
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
| 198 |
<script>
|
|
|
|
| 199 |
const mdText = document.getElementById('md-source').innerHTML.trim();
|
|
|
|
| 200 |
document.getElementById('content').innerHTML = marked.parse(mdText);
|
| 201 |
</script>
|
| 202 |
</body>
|