-
Notifications
You must be signed in to change notification settings - Fork 1
/
article-template.html
54 lines (52 loc) · 1.49 KB
/
article-template.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<!--Latex css-->
<link rel="stylesheet" href="https://latex.now.sh/style.css">
<!--Code highlighting-->
<link rel="stylesheet" href="https://latex.now.sh/prism/prism.css">
<script src="https://cdn.jsdelivr.net/npm/prismjs/prism.min.js"></script>
<!--Math code-->
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<!--Misc-->
<meta charset="UTF-8">
<!--No cache, to refresh on GitHub pages fast.-->
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
</head>
<body id="top">
<span class="sidenote left">
<a href="https://asicoderofficial.github.io/asiweb.github.io/">
<img src="../../logos/logo.png" width="200" height="100">
</a>
</span>
<!-- Header -->
<header>
<h1><span class="latex">Reinforcement learning</h1>
<p class="author">
What is it?<br>
</p>
</header>
<div class="abstract">
<h2>Abstract</h2>
<p></p>
</div>
<nav role="navigation">
<!-- Index of contents-->
<h2>Contents</h2>
<ol>
<li>
<a href="#introduction">Introduction</a>
</li>
</ol>
</nav>
<main>
<article>
<div id="introduction">
<h2>1. Introduction</h2>
</div>
</article>
</main>
</body>
</html>