问题标签 [scribble]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
390 浏览

racket - 在哈希表中使用环境渲染涂鸦字符串的功能是什么?

我是使用 scribble 的新手,但我不知道如何在我自己的程序中使用它的语法,而不是使用 scribble 语言。

我正在寻找的功能是什么?它必须存在,但我在文档中找不到它。

0 投票
1 回答
193 浏览

racket - Racket:在子模块中启用涂鸦语言

似乎#lang 语句在嵌套子模块中无效,并且上面的扩展模块版本缺少一些东西:

错误:模块:模块语言中没有#%module-begin 绑定

更新:

看起来这或多或少有效,但有更好的方法吗?scribble 会对未处理的输出端口做些什么吗?

0 投票
1 回答
873 浏览

fonts - 更改 Scribble 文档中的字体大小

在乳胶中,我可以\documentclass在行中更改文档的整体字体大小。

如何使用 Scribble 更改文档的字体大小?

一种可能性是使用exact并插入乳胶代码来更改字体:

但是问题是字体是指定就\documentclass行了,是由 scribble 生成的。

那么有什么方法可以从 scribble 中设置字体大小,或者使用一些乳胶包来改变\documentclass行后的字体大小?

0 投票
1 回答
60 浏览

documentation - Declaring the module of a defproc or deform (function/macro documentation) when split across multiple files

In scribble, I can use defproc and defform to define the documentation for a function or macro. And then scribble uses the nearest defform in the file to determine what module the function/macro is defined in.

However, sometimes it sometimes makes sense to have the documentation for the same module split up across multiple scribble files.

(Say if you want the documentation for a init function to be in repl.scrbl, and you wan the documentation for find in api.scrbl. But both of them are defined in the same module, say repl.rkt.)

However, Scribble complains when there are multiple substantiations of the same defmodule in the docs:

So, is there any way I can document both functions across multiple scribble files, even though they are defined in the same module?

0 投票
0 回答
12 浏览

java - 需要存储缓冲值并生成图像并在单击保存按钮时存储该图像

单击保存按钮时,我需要提供一个文件名,并且我得到了一些用于 scribbledraganddrop 的代码,我想为此代码实现保存按钮选项,但找不到我应该在 imageIO.write 中采用的缓冲图像/缓冲值作为输入流。

我的整个代码可以在这里找到:https ://github.com/mitshine/scribbledraganddrop/issues/1 其中Transferhandle在这里实现,如下所示:

0 投票
1 回答
163 浏览

racket - Scribble 文档:两个简单文件之间的交叉引用

scribble的文档(Racket 文档工具)说“在一起呈现的 [...] 文档中的交叉引用总是被解析”,但a.scrbl下面的文件未能引用文件中的部分b.scrbl

a.scrbl

b.scrbl

用 编译它们时scribble --html a.scrbl b.scrbl,我得到:

如何引用b.scrblfrom中的部分a.scrbl

0 投票
1 回答
35 浏览

documentation - 我如何涂鸦 - 是两个短破折号而不是一个长破折号?

在涂鸦中,当我将两个破折号(甚至三个破折号)放在一起时,例如--,它会变成一个长破折号。如何让涂鸦将它们保留为两个短破折号,例如在此文档页面中?

我的最终目标是能够将它们变成命令的标志,例如-hand --

verbatim确实将破折号分开,但它也会更改字体,并创建一个我不想要的新段落。

0 投票
3 回答
502 浏览

racket - 更改 Scribble 中的字体颜色(html 后端)

有什么方法可以使用 HTML 后端更改 scribble 中的字体颜色?

(更具体地说,我想在图书馆的手册中放置一个大的红色警告标签。)

0 投票
1 回答
85 浏览

racket - 将未知符号读取为 at-exp 语言中的字符串

我创建了一个提供各种功能的模块,包括#%module-begin。我想将它与 at-exp 语法一起使用,我可以使用以下 #lang 行来做到这一点:

但是,这不会将未知符号读取为字符串,例如在使用 scribble/text 语言时会发生这种情况。如何从我的库中提供此功能,以节省我在所有字符串周围写引号的时间?

我认为这可能与 #%top 函数有关。也许我可以从涂鸦/文本中以某种方式要求它,然后从我的库中提供它?

0 投票
1 回答
69 浏览

racket - 在涂鸦中应用样式

我有以下样式,应该将颜色更改为红色(使用color-property

如何将该样式应用于文本中的单词。假设我想WARNING!!!以红色出现。