我正在使用很棒的papaja
包来创建手稿。我想在文本(>>> df.column_A.str.cat(sep=' ')
'2 7 Seven 34'
中放置数字,并且希望它们准确显示在指定位置。
要实现后者,我遵循this advice将以下内容添加到YAML:
floatsintext: yes
这会将数字放在我想要的位置,但是文本间距设置为使用整个页面。我希望前面的文本使用从上到下的空格,而在图形之前在页面底部保留空白。
header-includes: #allows you to add in your own Latex packages
- \usepackage{float} #use the 'float' package
- \floatplacement{figure}{H} #make every figure with caption = h
答案 0 :(得分:3)
您正在使用的文档类似乎已激活<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p id="para">Hello World</p>
<br>
<button onclick="onlyRun()">Run Code in Code.gs Only</button>
<br><br>
<button onclick="runAndGet()">Run Code in Code.gs and Return a Value</button>
<script>
function setText(text){
var div = document.getElementById('para');
div.innerHTML = text;
}
function onSuccess(str) {
setText(str);
}
function onFailure(error) {
setText("ERROR: " + error.message);
}
function runAndGet(){
google.script.run.withSuccessHandler(onFailure).withSuccessHandler(onSuccess).runOnGsAndGetValue();
}
function onlyRun(){
google.script.run.runOnGsOnly();
}
</script>
</body>
</html>
,这将确保所有页面具有相同的bootom行。这通常是在书籍等事物中完成的。
如果您不想这样做,可以使用\flushbottom
宏。