columnSpan('full'); $this->rows(8); $this->fontFamily(FontFamily::Mono); $this->placeholder('Enter LaTeX code here... e.g., $f(x) = ax^2 + bx + c$'); $this->helperText('Supported formats: $...$, $$...$$, \(...\), \[...\]'); } public function columns(int $columns): static { $this->columns = $columns; return $this; } public function getColumns(): int { return $this->columns; } public static function getPreview(string $value): ?string { if (empty($value)) { return null; } // 简单预览:不渲染 LaTeX,仅显示原始内容 return $value; } }