File size: 2,051 Bytes
06e4298
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Differential Geometry - Mathematics Processes</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f5f5f5; padding: 20px; }
        .container { max-width: 800px; margin: 0 auto; background: white; border-radius: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 30px; }
        h1 { color: #d35400; margin-bottom: 15px; }
        .nav-links { margin-bottom: 25px; }
        .nav-links a { color: #d35400; text-decoration: none; margin-right: 20px; font-weight: 500; }
        .nav-links a:hover { text-decoration: underline; }
        .chart-list { list-style: none; }
        .chart-list li { margin-bottom: 12px; }
        .chart-list a { display: block; padding: 15px 20px; background: #f8f9fa; border-radius: 8px; color: #2c3e50; text-decoration: none; border-left: 4px solid #d35400; transition: all 0.2s; }
        .chart-list a:hover { background: #ecf0f1; }
    </style>
</head>
<body>
    <div class="container">
        <div class="nav-links">
            <a href="../../mathematics_index.html">← Back to Mathematics Index</a>
            <a href="https://arxiv.org/list/math.DG/recent" target="_blank">arXiv math.DG</a>
        </div>
        <h1>Differential Geometry</h1>
        <p style="color:#666;margin-bottom:25px;">Dependency graphs for manifolds, Riemannian geometry, connections, and differential forms.</p>
        <ul class="chart-list">
            <li><a href="differential_geometry-manifolds.html">Smooth Manifolds</a></li>
            <li><a href="differential_geometry-riemannian.html">Riemannian Geometry</a></li>
            <li><a href="differential_geometry-connections.html">Connections on Manifolds</a></li>
            <li><a href="differential_geometry-forms.html">Differential Forms</a></li>
        </ul>
    </div>
</body>
</html>