如何使用 HTML 输出在 tufte 风格的 Bookdown 中的每一章重置旁注编号?
How can I reset sidenote numbering at each chapter in tufte-style Bookdown with HTML output?
我正在使用 tufte 和 msmbstyle 包将 tufte-LaTeX 书籍转换为 tufte-Bookdown。我有一大堆旁注,希望每一章都重新开始编号,这样我就不会在书的最后达到 400。
我在 Bookdown GitHub 中发现 this CSS code 用于使用 footnotes/endnotes 的常规 Bookdown 来执行此操作。但是,我尝试修改代码以使用旁注的尝试失败了。这是我当前的 CSS 添加,它只采用该代码并放入 sidenote
或 sidenote-number
(Inspect Element 建议是正确的标签),其中 footnote
最初是:
/* generate new footnote calls */
.sidenote-number::after {
content: counter(fn-call);
position: relative;
top: -.5em;
font-size: 85%;
line-height: 0;
vertical-align: baseline;
}
/* use a counter for footnotes numbering */
.sidenote ol {
list-style: none;
counter-reset: fn-number;
}
.sidenote li {
counter-increment: fn-number;
}
.sidenote li p:first-child::before {
content: counter(fn-number) '. ';
width: 1.5em;
float: left;
}
这没有按预期工作,而是添加了一个新计数器,为每个旁注标记编号,并为每个标记重置一个计数器,因此文本标记得到一个1,旁注标记为 2。
我的 CSS 技能并不出色,我不确定下一步该怎么做。我怎样才能让实际标记重置?
您可以查看使用 tufte/msmbstyle here 构建的页面示例;向下滚动一点可以找到旁注 4。
我最终付钱请人来解决这个问题。他们写了一些 JavaScript 来修复它。以下代码可以另存为HTML文件,并添加到本书中
includes:
in_header: thishtmlfile.html
在 YAML 中。这是 HTML/JS/Jquery:
的代码
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function () {
var element_label= $("label[for *= 'tufte-sn-']");
var count = $(element_label).length;
$(element_label).each(function( index ) {
//console.log( ++index + ": " + $( this ).text() );
$(this).attr('for','tufte-sn-'+ ++index);
$(this).text(index);
});
});
$(document).ready(function () {
var element_input= $("input[id *= 'tufte-sn-']");
var count = $(element_input).length;
$(element_input).each(function( index ) {
//console.log( ++index + ": " + $( this ).text() );
$(this).attr('id','tufte-sn-'+ ++index);
});
});
$(document).ready(function () {
var element_span= $("span[class *= 'sidenote-number']");
var count = $(element_span).length;
$(element_span).each(function( index ) {
//console.log( ++index + ": " + $( this ).text() );
$(this).text(++index);
});
});
</script>
我的建议是先在 Latex
文件中修复它,然后 然后 import/Convert
它。
在文档的 beginning/preamble 处添加这些行,它将 start/reset 每章的旁注计数器
% the answer --restarting the footnote at 0
\let\oldchapter\chapter
\def\chapter{%
\setcounter{footnote}{0}%
\oldchapter
}
% now your doc
\begin{document}
% would have helped if you pasted some chapters or your book...
% some chapters...
\chapter{First}
\yourtext
我正在使用 tufte 和 msmbstyle 包将 tufte-LaTeX 书籍转换为 tufte-Bookdown。我有一大堆旁注,希望每一章都重新开始编号,这样我就不会在书的最后达到 400。
我在 Bookdown GitHub 中发现 this CSS code 用于使用 footnotes/endnotes 的常规 Bookdown 来执行此操作。但是,我尝试修改代码以使用旁注的尝试失败了。这是我当前的 CSS 添加,它只采用该代码并放入 sidenote
或 sidenote-number
(Inspect Element 建议是正确的标签),其中 footnote
最初是:
/* generate new footnote calls */
.sidenote-number::after {
content: counter(fn-call);
position: relative;
top: -.5em;
font-size: 85%;
line-height: 0;
vertical-align: baseline;
}
/* use a counter for footnotes numbering */
.sidenote ol {
list-style: none;
counter-reset: fn-number;
}
.sidenote li {
counter-increment: fn-number;
}
.sidenote li p:first-child::before {
content: counter(fn-number) '. ';
width: 1.5em;
float: left;
}
这没有按预期工作,而是添加了一个新计数器,为每个旁注标记编号,并为每个标记重置一个计数器,因此文本标记得到一个1,旁注标记为 2。
我的 CSS 技能并不出色,我不确定下一步该怎么做。我怎样才能让实际标记重置?
您可以查看使用 tufte/msmbstyle here 构建的页面示例;向下滚动一点可以找到旁注 4。
我最终付钱请人来解决这个问题。他们写了一些 JavaScript 来修复它。以下代码可以另存为HTML文件,并添加到本书中
includes:
in_header: thishtmlfile.html
在 YAML 中。这是 HTML/JS/Jquery:
的代码<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function () {
var element_label= $("label[for *= 'tufte-sn-']");
var count = $(element_label).length;
$(element_label).each(function( index ) {
//console.log( ++index + ": " + $( this ).text() );
$(this).attr('for','tufte-sn-'+ ++index);
$(this).text(index);
});
});
$(document).ready(function () {
var element_input= $("input[id *= 'tufte-sn-']");
var count = $(element_input).length;
$(element_input).each(function( index ) {
//console.log( ++index + ": " + $( this ).text() );
$(this).attr('id','tufte-sn-'+ ++index);
});
});
$(document).ready(function () {
var element_span= $("span[class *= 'sidenote-number']");
var count = $(element_span).length;
$(element_span).each(function( index ) {
//console.log( ++index + ": " + $( this ).text() );
$(this).text(++index);
});
});
</script>
我的建议是先在 Latex
文件中修复它,然后 然后 import/Convert
它。
在文档的 beginning/preamble 处添加这些行,它将 start/reset 每章的旁注计数器
% the answer --restarting the footnote at 0
\let\oldchapter\chapter
\def\chapter{%
\setcounter{footnote}{0}%
\oldchapter
}
% now your doc
\begin{document}
% would have helped if you pasted some chapters or your book...
% some chapters...
\chapter{First}
\yourtext