괄호 앞 음수 분배 스테이지 추가
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
"use client";
|
||||
|
||||
import { BlockMath, InlineMath } from "react-katex";
|
||||
|
||||
interface KatexRendererProps {
|
||||
latex: string;
|
||||
displayMode?: boolean;
|
||||
}
|
||||
|
||||
export default function KatexRenderer({
|
||||
latex,
|
||||
displayMode = false,
|
||||
}: KatexRendererProps) {
|
||||
return displayMode ? <BlockMath math={latex} /> : <InlineMath math={latex} />;
|
||||
}
|
||||
Reference in New Issue
Block a user