我正在尝试在 Jupyter 中进行完整的演示。我首先在浏览器中尝试了一些 HTML-CSS,几乎可以正常工作:
HTML index.html
:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>title</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="content-wrap">
<header>
<h1 id="firstSlideTitle" class="text">This is a long miltiline title for a random topic which nobody cares about!</h1>
<Lorem></Lorem>
</header>
<img src="pics/Python_logo.svg" id="firstSlidePic" alt="PythonLogo" class="center">
</div>
<footer>
<hr>
<img src="pics/by-nc-nd.svg">
<p id="twitter" class="text"><a><i class="fa fa-twitter">twitter</i></a></p>
</footer>
</body>
</html>
您可以在其中找到python 徽标和Creative Commons 徽标。和CSS style.css
:
body {
position: relative;
min-height: 90vh;
}
#content-wrap {
padding-bottom: 2.5rem;
}
.text {
font-family: computer Modern;
}
#firstSlideTitle {
width: 80%;
font-size: 300%;
font-weight: bold;
text-align: center;
margin: auto;
margin-top: 40px;
border-style: solid;
border-radius: 15px;
}
#firstSlidePic {
width: 50%;
height: auto;
padding: 40px;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
footer {
position: absolute;
bottom: 0px;
width: 100%;
height: 2.5rem;
}
#twitter{
float: right;
width: 33.3%;
text-align: right;
}
结果几乎可以:
我尝试将 CSS 代码放在<style>...</style>
Jupyter 代码单元中的标签内,配备%%html
魔法。还必须将所有id
s更改为 s,classe
因为 Python-Jupyter 无法处理#
s,将它们视为 python 注释。你可以在这个 Github Gist中找到该单元格。然而,结果更令人失望:
我尝试了一些解决方法,但没有一个足够好。如果您能帮助我知道该怎么做,我将不胜感激。