Explorer
Explorer
> Err my `\tikz@@moveto@NEW` in [#1409 (comment)](https://github.com/pgf-tikz/pgf/issues/1409#issuecomment-3218420881) only works if the next path operation supports border point. See update of that comment. @muzimuzhi Thanks to extend another issues from #1407....
Ops, I forget my one last vague point in the example... That is the **"Before"** Part: ``` \draw ([shift={(-5mm,0mm)}]b) -- (a); \draw ([shift={(-50mm,0mm)}]b) -- (a); \draw ([shift={(-500mm,0mm)}]b) -- (a); ```...
Widget Error: Failed to access CDN https://unpkg.com/ after 0 attempt(s), TypeError: Failed to fetch
The same as me with `uv`, and rather strangee, in my project A, export to html is okay, but in projectB, export to html would encounter: ``` 01:12:35.726 [error] Widget...
Widget Error: Failed to access CDN https://unpkg.com/ after 0 attempt(s), TypeError: Failed to fetch
Also strange, when I use the `python.exe` built for the project, the export failed. And when I use my global `python.exe`, the things goes smoothly. Here below is my full...
Widget Error: Failed to access CDN https://unpkg.com/ after 0 attempt(s), TypeError: Failed to fetch
Another successful attempt, rebuild the `venv` would be okay to handle this issues: - Remove the project's `.venv` - Run `uv sync` to rebuild the depenedency - Export to html...
> (引用内容时,建议文字形式优先;实在要发图片时,建议保持图片比例一致,这样图里的文字大小也一致) 支持,文字形式的内容更容易被搜索引擎检索到(考虑到后来人需要检索类似错误时带来的便利性)。 第一幅图的文本形式内容(在windows11上测试的结果)为: ``` xelatex --shell-escape ctex-spa-make This is XeTeX, Version 3.141592653-2.6-0.999997 (TeX Live 2025) (preloaded format=xelatex) \write18 enabled. entering extended mode (./ctex-spa-make.tex LaTeX2e L3 programming layer (./ctex-spa-macro.tex (c:/texlive/2025/texmf-dist/tex/latex/l3kernel/expl3-generic.tex...
> 将`\newtheorem`的环境内嵌在`tcolorbox`中使用而不是使用`\tcbuselibrary{theorems}`中的`\newtcbtheorem` 我使用`tcolorbox`的强大功能尝试模拟了上面的 效果,无论使用`pdflatex`还是`xe/lualatex`**均不会**出现全角`(`的**神秘缩进** : ``` \documentclass{article} \usepackage[UTF8]{ctex} \usepackage{tcolorbox} \tcbuselibrary{theorems,skins} \NewTcbTheorem[number within=section]{xmp}{Example}{% colbacktitle=tcbcolback,% coltitle=black,% titlerule=0pt, toptitle=1.5mm, top=0pt, fonttitle=\bfseries }{example} \begin{document} \begin{xmp*}{title} (something aaa here) aaaa (something bbb here) bbbb (something...
> 构造一个只使用 CJK 包的例子试试 我不是很了解`CJK`这个包如何确定 ``` \begin{CJK}[]{}{} ... \end{CJK} ``` 中的``的其他内容 下面的例子在`TL2025`+`windows11`+`pdflatex`编译正常... ``` \documentclass{article} \usepackage{CJK} \usepackage{tcolorbox} \newtheorem{example}{\textbf{Example}:} \newenvironment{xmp}[1]{% \begin{tcolorbox}\begin{example}% \textbf{#1}\newline% }% {% \end{example}\end{tcolorbox}% }% \begin{document}% \begin{CJK}{UTF8}{gbsn} \begin{xmp}{title}% (something aaa here)...
> 相似 issue https://github.com/CTeX-org/ctex-kit/issues/671#issuecomment-1659372912 讨论到,加载 CJK、CJKspace 和 CJKpunct 后,问题复现。去掉 CJKpunct,问题消失。 我在win上测试了,确实如此。 > 尝试去掉 `tcolorbox` 依赖 默认设置(`/tcb/capture=minipage`)下,`tcolorbox` env 接近 `minipage` env。直接换成 `minipage` env,问题复现吗? 问题可以复现。 ``` \documentclass{article} \usepackage{CJK} \usepackage{CJKspace} \usepackage{CJKpunct} \newtheorem{example}{\textbf{Example}:} \newenvironment{xmp}[1]{%...
不好意思,昨天有些事情耽搁了。 > > 另外两个「其他」我需要下次再做尝试,一时不是很明白🙁 > > 尝试一般化定理环境 > \newtheorem 定义的环境,和 \list 类似(见 \@begintheorem 定义),可以试试用 enumitem、trivlist 之类的替换,看能否复现 > 是为了用更一般的环境替换 \newtheorem 定义的环境。和「其他」里的第一点类似,都是为了简化例子。 我明白的,只是前天晚上深夜了看不动` \@begintheorem`了😟 在`source2e.pdf`中对`\@begintheorem`的定义为一个`trivlist`环境 ``` % ltthm.dtx \@begintheorem \@opargbegintheorem \@endtheorem Providing...