平均能量损失

平均能量损失

在经济学中,作者顺序传统上是按字母顺序排列的。由于这种排序方式已知会引起偏差,因此论文作者的随机排序很少见(例子)。

我可以使用 在编译时对文档作者进行排序pgfmathrandom,但这不够随机。我想在查看时动态地对作者进行排序。我能找到的在 LaTeX/PDF 中实现 Javascript 功能的示例不适用,因为它们不处理直接调整文档内容(例子)。

所需 MWE(\maketitle不需要被覆盖,那部分很简单):

 \documentclass{article}

 \usepackage{[magic-package]}

 \addauthor{Aaron}
 \addauthor{Zhang}

 \begin{document}
 \maketitle

 \end{document}

应产生:

 +--------------+               +--------------+
 | Aaron, Zhang |               | Zhang, Aaron |
 |              |               |              |
 | Lorem ipsum  | w.p. 1/2,     | Lorem ipsum  | w.p. 1/2.

答案1

这是一个使用eforms包裹。

它使用 JavaScript 在打开文档时随机化作者,并将结果放在表单字段中,作者通常插入在标题页中。

但也存在一些限制:

  • 在 PDF 表单文本字段中使用非标准字体确实不容易,所以我到处都使用 Times。
  • 您必须指定文本字段的高度,因此如果您的作者数量超过一行,则需要手动调整。如果您真的很热衷,这可能可以自动完成。
  • 当然,它需要 Adob​​e Reader。

平均能量损失

\documentclass{article}

\usepackage{newtxtext,newtxmath}
\usepackage[useui]{eforms}

\newcommand{\randauthorformat}{%
  border={invisible},
  textsize={11.5},
  textfont={Times-Roman},
  align={centered},
  fieldflags={readonly,multiline,noscrolling},
  % Default value for readers that don't support JavaScript
  value={Author One, Author Two, Author Three, and Author Four},
  pageopen={%
    % Add authors to array
    var array = ["Author One", "Author Two", "Author Three", "Author Four"];
    % Shuffling algorithm from https://stackoverflow.com/a/2450976/12652399
    var currentIndex = array.length, temporaryValue, randomIndex;
    while (0 !== currentIndex) {
      randomIndex = Math.floor(Math.random() * currentIndex);
      currentIndex -= 1;
      temporaryValue = array[currentIndex];
      array[currentIndex] = array[randomIndex];
      array[randomIndex] = temporaryValue;
    }
    var i = array.length;
    currentIndex = 0;
    var authors = "";
    while (currentIndex < array.length) {
      authors += array[currentIndex];
      if (currentIndex < array.length - 1) {
        authors += ", ";
      }
      if (currentIndex == array.length - 2) {
        authors += "and ";
      }
      currentIndex += 1;
    }
    var f = this.getField("author");
    f.value = authors;
  }
}
\newcommand{\randauthor}{%
  \textField[\ui{presets=\randauthorformat}]{author}{\linewidth}{11.5pt}}

\title{Randomised Authors}
\author{\randauthor}

\begin{document}
\maketitle
\end{document}

MWE 输出

相关内容