我正在尝试用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>
您可以在其中找到the python logo和the Creative Commons logo。和 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代码放在Jupyter中装有<style>...</style>
魔术的代码单元中的%%html
标签内。还必须将所有id
更改为classe
,因为Python-Jupyter无法处理#
,将它们视为python注释。您可以在this Github Gist中找到该单元格。但是,结果更令人失望:
我已经尝试了一些解决方法,但是都不够好。如果您能帮助我知道该怎么做,我将不胜感激。
答案 0 :(得分:1)
我确实在此处的RISE github存储库“问题”区域中提供了一些有关此的背景信息 https://github.com/damianavila/RISE/issues/438