tokcycle

环境内的 tokcycle 标记器错误
tokcycle

环境内的 tokcycle 标记器错误

延伸505462,我在许多数学命令上添加了替代文本选项,以便我可以在文本和样式化方程输出之间切换。我无法使用环境调用 tokcycle。这是工作代码。 \documentclass{amsart} %% Equalspeak commands \usepackage{tokcycle} % convert math to english-ish %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Math Overrides \renewenvironment{equation}{ ...

Admin

如何将宏的内容传递给命令?
tokcycle

如何将宏的内容传递给命令?

为了开发类文件,我尝试对字符串(可能包含 latex 命令)执行一些基本检查。为此,我使用教学循环包裹。 当我直接传递字符串时,一切都按预期进行。由于各种原因(我们使用以下方式存储参数)鍵盤并在以后撤销这些值(如果它们存在)我需要处理内容宏。 如何将宏的内容传递给命令?或者获取教学循环由于我们想要检测输入字符串中的宏(例如“Test\test”),因此可以在不扩展宏的情况下处理宏的内容。 例子: \documentclass{article} \usepackage{tokcycle} \newcommand\checkstring[1]{% \ty...

Admin

映射在音译中如何起作用?
tokcycle

映射在音译中如何起作用?

我对音译映射很感兴趣。我正在做一个使用音译的项目。我见过一些解决此问题的代码。但我能理解它们。例如, \def\tcmapto#1#2{\expandafter\def\csname tcmapto\number`#1\endcsname{#2}} \def\tcmapnumto#1#2{\expandafter\def\csname tcmapto#1\endcsname{#2}} \def\tcremap#1{\ifcsname tcmapto\number`#1\endcsname \csname tcmapto\nu...

Admin

如何在 \AtBeginDocument 中使用 \tokencyclexpress?
tokcycle

如何在 \AtBeginDocument 中使用 \tokencyclexpress?

以下是我正在做的事情(我的包裹需要这个): \documentclass{article} \usepackage{tokcycle} \AtBeginDocument{\tokencyclexpress} \begin{document} Hello, world! \end{document} 无法编译。 ...

Admin

如何在命令中使用 \tokencyclexpress?
tokcycle

如何在命令中使用 \tokencyclexpress?

这段代码有什么问题(它无法编译): \documentclass{article} \usepackage{tokcycle} \newcommand\flush{\endtokencyclexpress\par\tokencyclexpress} \begin{document} \tokencyclexpress First \flush Second \endtokencyclexpress \end{document} 如果我将正文放入\flush文档中,则一切都正常。 ...

Admin

tokcycle的缓冲区该如何处理?
tokcycle

tokcycle的缓冲区该如何处理?

这就是我尝试使用tokcycle包实现的目标: \documentclass{article} \usepackage{tokcycle} \newcommand\flush{..} % close the buffer, print it, and open a new one \newcommand\click{..} % print the buffer and don't close it \begin{document} \tokencyclexpress First \click Second \flush Third \endtokencycl...

Admin

如何将 \cytoks 添加到 \tokencyclexpress?
tokcycle

如何将 \cytoks 添加到 \tokencyclexpress?

这就是我正在做的事情: \documentclass{article} \usepackage{tokcycle} \begin{document} \tokencyclexpress Hello1 \endtokencyclexpress % Hello1 is in \cytoks \tokencyclexpress % We start a new buffer \the\cytoks % Print the old buffer into it (Hello1) Hello2 \endtokencyclexpress % Close the new ...

Admin