Skip to content

Commit

Permalink
fix: mathquill의 빈칸이 나오지 않는 이슈
Browse files Browse the repository at this point in the history
- 빈칸을 생성할 수 없어서 특정 문자를 삽입
  • Loading branch information
LeeSuKyeong committed Dec 20, 2020
1 parent 5b2f1b6 commit 2a6c28b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/constants/mathSection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,32 +41,32 @@ export const combi: InputMath[] = [
{
name: 'combi1',
svg: SVG.combi.COMBI,
latex: '^{ }',
latex: 'x^{ }',
isPossible: true,
},
{
name: 'combi2',
svg: SVG.combi.COMBI_DOWN,
latex: '{ }_{ }',
latex: 'x_{ }',
isPossible: true,
},
{
name: 'combi4',
svg: SVG.combi.COMBI_LEFT,
latex: '_{ }^{ }{ }',
latex: '_{ }^{ }x',
isPossible: true,
},
{
name: 'combi5',
svg: SVG.combi.COMBI_DOWN_BOTH,
latex: '{ _{ }{\\ }_{ } }',
isPossible: true,
latex: '{ _{ }x_{ } }',
isPossible: false,
},
{
name: 'combi6',
svg: SVG.combi.COMBI_ALL,
latex: '_{ }^{ }{\\ }_{ }^{ }',
isPossible: true,
latex: '_{ }^{ }\\overline{ }_{ }^{ }',
isPossible: false,
},
];

Expand Down

0 comments on commit 2a6c28b

Please sign in to comment.