immediate

`\immediate\write` 在第一页不起作用
immediate

`\immediate\write` 在第一页不起作用

\documentclass{article} \usepackage{lipsum} \newwrite\foo \openout\foo=foo.foo \begin{document} \immediate\write\foo{A} \immediate\write\foo{B} \lipsum \immediate\write\foo{C} \lipsum \immediate\write\foo{D} \end{document} \closeout\foo 编译上述代码时,foo.foo 包含 C D 如果我删除\immediates...

Admin

不工作 \immediate\write
immediate

不工作 \immediate\write

我正在编写自己的.sty文件。它包含自己的目录和类似 的命令\section{},但什么都不起作用,因为目录文件的输出无法正常工作 输出结果如下: \hyperref[mysection1]{\bfseries 3\hskip 1em\relax Section\dotfill \pageref {mysection1}} \hyperref[mysection2]{\bfseries 3\hskip 1em\relax Section\dotfill \pageref {mysection2}} 它看起来是这样的: \hyperref [m...

Admin

在 latex \immediate\write18 env 中使用批处理脚本
immediate

在 latex \immediate\write18 env 中使用批处理脚本

我正在尝试编写一个脚本,使用 texcount 仅输出字符数(包括空格)。我编写了一个批处理脚本,可以正常运行,没有任何问题。 问题是尝试使用 \immediate\write18 环境在 overleaf 中的 latex shell escape 中运行它。问题似乎主要在于 latex 如何处理批处理脚本中使用的特殊字符。脚本/latex 代码如下: \newcommand{\quickcharcount}[1]{% \immediate\write18{ texcount -1 -sum -merge -...

Admin