我正在尝试将封面添加到我的docfx pdf文档模板中。我拥有的当前封面是由我在cover.md文件中指定的图像,标题和副标题生成的。我的问题是我无法单独编辑每个元素的css样式(这意味着它们只能一起作为一个块进行样式设置)。我需要添加一张图片,该图片应放置在封面右侧。
我试图编辑cover.html.primary.tmpl
并添加一个html图像对象并分别设置其样式,但是只显示一个空框,其中没有图像。我猜想我必须将图像添加到markdown文件中,但是我无法从同一markdown文件中的其他元素分别设置样式。
cover.html.primary.tmpl文件:
{{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
{{!master(layout/_master.tmpl)}}
<style>
.subtitle {
height: 300px;
width: 600px;
position: fixed;
text-align: center;
top: 40%;
left: 50%;
margin-top: -200px;
margin-left: -300px;
}
</style>
<div class="subtitle">
{{{conceptual}}}
</div>
Cover.md文件:
---
documentType: cover
---
![logo](../images/Logo.png)
# MyLibrary
## Documentation
### Version: 1.15.8754
如果在设置图像样式时在<div></div>
下添加html图像对象,则会在正确的位置出现一个空框,但没有图像。我已检查以确保图像参考的拼写正确,并且指向正确的位置。