Skip to content

Commit 6cbb204

Browse files
committed
names
1 parent c118552 commit 6cbb204

File tree

12 files changed

+28
-28
lines changed

12 files changed

+28
-28
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Author interactive math equations and diagrams online using LaTeX and PSTricks
77
Author real LaTeX+PSTricks in React, Vue.js, or pure HTML5.
88

99
```sh
10-
npm install @latex2js/html5
11-
npm install @latex2js/vue
12-
npm install @latex2js/react
10+
npm install latex2html5
11+
npm install latex2vue
12+
npm install latex2react
1313
```
1414

1515
[LaTeX2JS website](https://latex2js.com)
@@ -29,9 +29,9 @@ These are the relevant packages for usage:
2929
| Package | Description | Documentation |
3030
|---------|-------------|---------------|
3131
| [latex2js](packages/latex2js) | Core LaTeX parsing and rendering engine with environment support | [README](packages/latex2js/README.md) |
32-
| [@latex2js/html5](packages/html5) | Pure HTML5 implementation with automatic discovery and bundled JavaScript distribution | [README](packages/html5/README.md) |
33-
| [@latex2js/react](packages/react) | React components for LaTeX rendering with interactive graphics and mathematical notation | [README](packages/react/README.md) |
34-
| [@latex2js/vue](packages/vue) | Vue.js components for LaTeX rendering with Composition API and SSR support | [README](packages/vue/README.md) |
32+
| [latex2html5](packages/html5) | Pure HTML5 implementation with automatic discovery and bundled JavaScript distribution | [README](packages/html5/README.md) |
33+
| [latex2react](packages/react) | React components for LaTeX rendering with interactive graphics and mathematical notation | [README](packages/react/README.md) |
34+
| [latex2vue](packages/vue) | Vue.js components for LaTeX rendering with Composition API and SSR support | [README](packages/vue/README.md) |
3535

3636
## MathJax Packages
3737

packages/html5/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
55

66
# 3.0.0 (2025-07-05)
77

8-
**Note:** Version bump only for package @latex2js/html5
8+
**Note:** Version bump only for package latex2html5
99

1010
## [2.1.3](https://github.com/Mathapedia/LaTeX2JS/compare/[email protected]@2.1.3) (2020-06-12)
1111

packages/html5/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @latex2js/html5
1+
# latex2html5
22

33
Pure HTML5 implementation for LaTeX rendering with automatic discovery and bundled JavaScript distribution. Perfect for vanilla HTML pages and simple integrations.
44

@@ -7,7 +7,7 @@ Pure HTML5 implementation for LaTeX rendering with automatic discovery and bundl
77
### NPM Package
88

99
```bash
10-
npm install @latex2js/html5
10+
npm install latex2html5
1111
```
1212

1313
## Features
@@ -84,7 +84,7 @@ npm install @latex2js/html5
8484
### Method 2: `init` and `render` methods
8585

8686
```javascript
87-
import { init, render } from '@latex2js/html5';
87+
import { init, render } from 'latex2html5';
8888

8989
// Auto-discover and render all LaTeX content
9090
init();

packages/html5/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@latex2js/html5",
2+
"name": "latex2html5",
33
"version": "3.1.1",
44
"description": "Author interactive math equations and diagrams online using LaTeX and PSTricks",
55
"author": "Dan Lynch <[email protected]>",

packages/macros/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ The package includes over 140 macro definitions covering:
161161
### With React Components
162162

163163
```jsx
164-
import { LaTeX } from '@latex2js/react';
164+
import { LaTeX } from 'latex2react';
165165
import macros from '@latex2js/macros';
166166

167167
function MathDocument() {

packages/react/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# @latex2js/react
1+
# latex2react
22

33
React components for LaTeX rendering with support for mathematical notation, PSTricks graphics, and interactive elements.
44

55
## Installation
66

77
```bash
8-
npm install @latex2js/react
8+
npm install latex2react
99
```
1010

1111
## Features
@@ -19,7 +19,7 @@ npm install @latex2js/react
1919

2020
```jsx
2121
import React from 'react';
22-
import { LaTeX, MathJaxProvider } from '@latex2js/react';
22+
import { LaTeX, MathJaxProvider } from 'latex2react';
2323

2424
const content = String.raw`
2525
Here is some great equation:
@@ -75,7 +75,7 @@ export default App;
7575
The main component for rendering LaTeX content:
7676

7777
```jsx
78-
import { LaTeX } from '@latex2js/react';
78+
import { LaTeX } from 'latex2react';
7979

8080
<LaTeX
8181
content={latexString} // LaTeX content to render
@@ -101,7 +101,7 @@ import { LaTeX } from '@latex2js/react';
101101
Provides MathJax context for mathematical rendering:
102102

103103
```jsx
104-
import { MathJaxProvider } from '@latex2js/react';
104+
import { MathJaxProvider } from 'latex2react';
105105

106106
<MathJaxProvider
107107
config={mathJaxConfig} // Optional: MathJax configuration

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@latex2js/react",
2+
"name": "latex2react",
33
"version": "3.1.1",
44
"description": "Author interactive math equations and diagrams online using LaTeX and PSTricks",
55
"author": "Dan Lynch <[email protected]>",

packages/settings/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ The package automatically handles:
114114
This package is used by:
115115
- **@latex2js/pstricks**: For processing PSTricks command options
116116
- **latex2js**: For handling LaTeX document settings
117-
- **@latex2js/html5**: For applying settings during rendering
117+
- **latex2html5**: For applying settings during rendering
118118

119119
## TypeScript Support
120120

packages/utils/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@ This package serves as the foundation for all other LaTeX2JS packages:
110110
- **@latex2js/settings**: Uses utilities for option parsing and unit conversion
111111
- **@latex2js/pstricks**: Heavily relies on coordinate transformation and SVG manipulation
112112
- **latex2js**: Uses string processing utilities for LaTeX parsing
113-
- **@latex2js/html5**: Uses SVG utilities for rendering graphics
113+
- **latex2html5**: Uses SVG utilities for rendering graphics

packages/vue/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
55

66
# 3.0.0 (2025-07-05)
77

8-
**Note:** Version bump only for package @latex2js/vue
8+
**Note:** Version bump only for package latex2vue
99

1010
## [2.2.2](https://github.com/Mathapedia/LaTeX2JS/compare/[email protected]@2.2.2) (2020-06-12)
1111

0 commit comments

Comments
 (0)