marp | theme | paginate | footer | style | size |
---|---|---|---|---|---|
true |
default |
true |
2022年11月11日 |
:root {
font-family: Noto Sans SC;
background-color: white;
}
section footer{
font-size: 30px;
display: none;
position: absolute;
text-align: center;
width: 100%;
color: black;
font-weight: bold;
}
section h1 {color:DarkRed}
section {
background-image:url('./img/background.png'),url('./img/logo.png');
background-position: bottom right, right 3% top 3%;
background-repeat: no-repeat,no-repeat;
background-size: 60%,30%;
}
strong,em {
color: brown ;
}
section::after {
font-weight: bold;
color: black;
content: attr(data-marpit-pagination) ' / ' attr(data-marpit-pagination-total);
}
|
58140 |
西安交通大学 计算机科学与技术学院
<style scoped> li {font-size: 40px;font-weight:bold;} </style>
- 如何使用
- 首页修改
- 背景修改
- 图片格式
- 左右排布
- CSS 说明
- 下载 VS code
- 在插件中心安装Marp for VS Code
- 新建一个 md 文件,复制 1~51 行 CSS 或者从该模板中直接新建.
- 点击 1 可以实时显示 Slides,点击 2 选择 export 可以导出 PDF.
我预设了适合展示的标题大小,当然如果是需要修改适合投影的字体大小可在源代码中第 12 行修改h1的font-size
.
改变background-image:url('./img/background.png');
可以修改首页背景图片.
<style scoped>
section h1 {text-align: center;font-size: 80px;color:black;}
section {
background-image:url('./img/background.png');
background-size:cover
}
footer{color:black;font-size: 20px;}
</style>
修改模板源代码 27~31 行background-image:url('./img/background.png');
中背景图片即可.
section{
background-image:url('./img/background.png');
background-size:cover;
position: absolute;
}
全局格式修改在源代码 31~35 行
h1
一级大标题
h2
二级大标题
p
正文字体
table
表格字体,居中
li
列表字体,居左
section h1 {font-size:40px;color:black;margin-top:px;}
section h2 {font-size:30px;color:black;margin-top:px;}
section p {font-size: 25px;color:black;}
section table {text-align: center;font-size: 32px;color:black;}
section a {font-size: 25px;color:black;}
li {font-size: 30px;text-align: left;}
默认居中,临时在某一slides中修改可以
<style scoped>
img {
margin-left: auto; margin-right:auto;
display:block;margin:0 auto;width:25cm;
}
</style>
或者:
![w:2cm h:2cm](img/background.png)
![bg left:40% w:5cm h:5cm](img/background.png)
![bg right:40% w:5cm h:5cm](img/background.png)
https://www.w3school.com.cn/css/css_image_gallery.asp
https://marpit.marp.app/theme-css
https://marpit.marp.app/usage
https://www.markdown.xyz/basic-syntax/
<style scoped> section h1 {text-align: center;font-size: 80px} </style>