diff --git a/README.md b/README.md index 74d00b6..7a91c00 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![CI](https://github.com/Leedehai/typst-physics/actions/workflows/ci.yml/badge.svg)](https://github.com/Leedehai/typst-physics/actions/workflows/ci.yml) [![Latest release](https://img.shields.io/github/v/release/Leedehai/typst-physics.svg?color=gold)][latest-release] -Available in the collection of [Typst packages](https://typst.app/docs/packages/): `#import "@preview/physica:0.9.0": *` +Available in the collection of [Typst packages](https://typst.app/docs/packages/): `#import "@preview/physica:0.9.1": *` > physica _noun_. > * Latin, study of nature @@ -49,21 +49,21 @@ compiler locally, it downloads packages on-demand and caches them on-disk, see ```typst // Style 1 -#import "@preview/physica:0.9.0": * +#import "@preview/physica:0.9.1": * $ curl (grad f), tensor(T, -mu, +nu), pdv(f,x,y,[1,2]) $ ``` ```typst // Style 2 -#import "@preview/physica:0.9.0": curl, grad, tensor, pdv +#import "@preview/physica:0.9.1": curl, grad, tensor, pdv $ curl (grad f), tensor(T, -mu, +nu), pdv(f,x,y,[1,2]) $ ``` ```typst // Style 3 -#import "@preview/physica:0.9.0" +#import "@preview/physica:0.9.1" $ physica.curl (physica.grad f), physica.tensor(T, -mu, +nu), physica.pdv(f,x,y,[1,2]) $ ``` diff --git a/physica-manual.pdf b/physica-manual.pdf index 55daa9b..7328f1a 100644 Binary files a/physica-manual.pdf and b/physica-manual.pdf differ diff --git a/physica-manual.typ b/physica-manual.typ index 45cbad2..cb27a05 100644 --- a/physica-manual.typ +++ b/physica-manual.typ @@ -2,7 +2,7 @@ // This document is shared under the Creative Commons BY-ND 4.0 license. #import "physica.typ": * -#let version = "0.9.0" +#let version = "0.9.1" #set document( title: [physica-manual.typ], @@ -61,7 +61,7 @@ This manual itself was generated using the Typst CLI and the `physica` package, With `typst`'s #linkurl("package management", "https://github.com/typst/packages"): ```typst -#import "@preview/physica:0.9.0": * +#import "@preview/physica:0.9.1": * $ curl (grad f), pdv(,x,y,z,[2,k]), tensor(Gamma,+k,-i,-j) = pdv(vb(e_i),x^j)vb(e^k) $ ``` diff --git a/typst.toml b/typst.toml index 45259ff..79ba0dc 100644 --- a/typst.toml +++ b/typst.toml @@ -1,6 +1,6 @@ [package] name = "physica" -version = "0.9.0" +version = "0.9.1" description = "Neat derivative, differential, field, matrix, braket, tensor, hbar, etc." authors = ["Leedehai"] repository = "https://github.com/Leedehai/typst-physics"