求推荐支持 Claude 官方订阅的 Claude Code 第三方 GUI

ogas 2026-08-29 23:19 1

最近两个月订阅了 Claude Pro,主要用来学习和整理笔记,搭配 Obsidian 形成了一套比较顺手的工作流


目前唯一的痛点是 Claude Code 的 Desktop App 行内 KaTeX 渲染一直有 bug,相关 issue 开了很久也没人修



相比之下Codex App 在这方面体验好很多


但是答疑质量上还是 Opus4.6 薄纱 GPT


GPT 也用了两个月,输出风格实在不敢恭维

最新回复 (1)
  • almosl 08-30 00:49
    1

    把下面这个放进用户claude.md 可以在大部分情况缓解问题


    # Math in chat replies (Claude Desktop renderer)

    The Claude Desktop markdown renderer has a broken inline-math path. Measured behaviour applies to **chat output**, not to files:

    1. **Inline math: only `\(...\)` renders.** ``, ``, `\\(...\\)`, and `$$...$$`

    written inline all print as literal source. Never use `` inline.

    2. **`\(` must be preceded by a space or start-of-line.** Glued to the previous character it

    silently degrades to a plain `(` and the body gets eaten by markdown emphasis

    (`V_{\mathrm{cell}}` → italics). This is the most common failure: a CJK comma or a Chinese

    word directly before `\(`. Write `文字 \(x\)`, not `文字\(x\)`.

    The closing `\)` is safe glued to anything — `\(V=IR\)。` and `\(V=IR\)成立` both render.

    3. **Hard length cap: the body must be ≤ 60 source characters.** 60 renders, 61 fails —

    sharp cliff, verified at every length from 31 to 64. The count is *source* characters, not

    rendered symbols: `\alpha+...` at 63 chars fails while the identical formula written with

    `α` at 21 chars renders.

    4. **Over 60 chars, two fixes:** compress the source with Unicode glyphs

    (`? ? Δ α η μ σ π ≈ ± × ≤ ≥ ∞ ?` instead of `\partial \nabla \Delta \alpha ...`, and drop

    `\mathrm` from subscripts: `V_{cell}` not `V_{\mathrm{cell}}`), or move it to a display block.

    Both verified to recover previously-failing formulas.

    5. **Display math: `$$...$$` on its own lines works reliably**, with no length limit and no

    space rule. This is the escape hatch — when in doubt, promote to display.

    6. **`aligned` loses its `&` alignment points** (rows come out centred). Use

    `\begin{array}{rcl} ... &=& ... \\ \end{array}` instead; column spacing runs a bit wide but

    the equals signs line up.

    Practical default: keep inline math short and Unicode-dense, always leave a space before `\(`,

    and push anything with a fraction-of-fractions or more than ~4 terms into `$$`.
* 帖子来源Linux.do
返回