Yukai Chou
Yukai Chou
In TeX 1 in = 72.72 pt = 72 bp, while in SVG 1 in = 72 pt (see [SVG spec 1.1, sec. 7.10 Units](https://www.w3.org/TR/SVG11/coords.html#Units)). Or you can think of...
Testing `\ifx\path\tikz@command@path` might be another option.
> 其实上面的代码我也还有一个问题不是很理解。在调用`compose`传三个参数的时候,第三个参数在`compose`函数里面怎么就调到了??? @wqcstrong 原文已修改为,首先介绍接受任意个参数的 `compose` 定义,然后从接受两个参数的简化版本开始介绍。见 May 2018 的提交 https://github.com/MostlyAdequate/mostly-adequate-guide/commit/2c8decedb4f83a5a46e97472b0eaea038bf782f3
I have added the suggested fix into my push request #366, which is opened on Jun 1 and originally fix only the "missing closing brace" typo, except for the first...
> I just read parts I and II of the manual and made note of the following typos: > > * p.7, section 4.1, visible space glyph ("␣") is missing...
> Maybe this is because `\pgfmath@basic@pow@` still invokes `\pgfmathln@` when the exponent is not an integer, but `\pgfmathln@` has at this point been replaced with `\pgfmathfloatln@`? After expanding `\pgfmath@basic@pow@{0.4}{2.1}` using...
It seems `\ProvidesFileRCS` is deprecated (sort of) when pgf is converted to git. Also at that time a latex-styled `\ProvidesFile{}[]` was supported and maybe is recommended now. See - https://github.com/pgf-tikz/pgf/commit/c1e51497546e4eec1b2bda9ddbfa52a3322473c5#diff-eb412af08654b8073bf30b54ae0afd1418008443eaa91aff81a839a32d39c7c5...
Bad news: `pgf`'s driver for `dvisvgm` does not support blend mode. (More specifically, it doesn't redefine `\pgfsys@blend@mode`.) A warning is expected to be found in the log: ``` Package pgf...
> [`mix-blend-mode`](https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode) is a CSS feature and not intrinsic to SVG. I'm not sure whether we want to support it for `dvisvgm`. SVG has a `` filter. MDN pages for...
From the code, `\graph` cannot ignore `\par`(s) nested in `{...}`. For example, - `\tikz \graph { a -> {b, c}; \par d -> e };` is ok, but - `\tikz...