diff --git a/README.md b/README.md index af1a86c..6028bbc 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -:green_book: The [manual](https://github.com/Leedehai/typst-physics/blob/v0.9.2/physica-manual.pdf). +:green_book: The [manual](https://github.com/Leedehai/typst-physics/blob/v0.9.3/physica-manual.pdf).

logo

-# The physica package for Typst (v0.9.2) +# The physica package for Typst (v0.9.3) [![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.2": *` +Available in the collection of [Typst packages](https://typst.app/docs/packages/): `#import "@preview/physica:0.9.3": *` > physica _noun_. > * Latin, study of nature @@ -27,7 +27,7 @@ natural sciences, including: ## A quick look -See the [manual](https://github.com/Leedehai/typst-physics/blob/v0.9.2/physica-manual.pdf)for more details and examples. +See the [manual](https://github.com/Leedehai/typst-physics/blob/v0.9.3/physica-manual.pdf)for more details and examples. ![demo-quick](https://github.com/Leedehai/typst-physics/assets/18319900/4a9f40df-f753-4324-8114-c682d270e9c7) @@ -50,21 +50,21 @@ compiler locally, it downloads packages on-demand and caches them on-disk, see ```typst // Style 1 -#import "@preview/physica:0.9.2": * +#import "@preview/physica:0.9.3": * $ curl (grad f), tensor(T, -mu, +nu), pdv(f,x,y,[1,2]) $ ``` ```typst // Style 2 -#import "@preview/physica:0.9.2": curl, grad, tensor, pdv +#import "@preview/physica:0.9.3": 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.2" +#import "@preview/physica:0.9.3" $ physica.curl (physica.grad f), physica.tensor(T, -mu, +nu), physica.pdv(f,x,y,[1,2]) $ ``` @@ -89,7 +89,7 @@ typst 0.10.0 (70ca0d25) ## Manual -See the [manual](https://github.com/Leedehai/typst-physics/blob/v0.9.2/physica-manual.pdf) for a more comprehensive coverage, a PDF file +See the [manual](https://github.com/Leedehai/typst-physics/blob/v0.9.3/physica-manual.pdf) for a more comprehensive coverage, a PDF file generated directly with the [Typst](https://typst.app) binary. To regenerate the manual, use command @@ -107,13 +107,13 @@ request. If it is large, the best first step is creating an issue and let us explore the design together. Some features might warrant a package on its own. * Testing: currently testing is done by closely inspecting the generated -[manual](https://github.com/Leedehai/typst-physics/blob/v0.9.2/physica-manual.pdf). +[manual](https://github.com/Leedehai/typst-physics/blob/v0.9.3/physica-manual.pdf). This does not scale well. I plan to add programmatic testing by comparing rendered pictures with golden images. ## Change log -[changelog.md](https://github.com/Leedehai/typst-physics/blob/v0.9.2/changelog.md). +[changelog.md](https://github.com/Leedehai/typst-physics/blob/v0.9.3/changelog.md). ## License diff --git a/changelog.md b/changelog.md index 5129553..4dcd767 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # Changelog +## 0.9.3 + +* Add `delim` to `vecrow(..)` to specify the delimiter. + ## 0.9.2 * Let `braket()` take an optional third argument to render `braket(u,A,v)` as diff --git a/physica-manual.pdf b/physica-manual.pdf index 1914514..38a033e 100644 Binary files a/physica-manual.pdf and b/physica-manual.pdf differ diff --git a/physica-manual.typ b/physica-manual.typ index a40546c..5d40cef 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.2" +#let version = "0.9.3" #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.2": * +#import "@preview/physica:0.9.3": * $ 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 cbf006f..b224aed 100644 --- a/typst.toml +++ b/typst.toml @@ -1,6 +1,6 @@ [package] name = "physica" -version = "0.9.2" +version = "0.9.3" description = "Math constructs for science and engineering: derivative, differential, vector field, matrix, tensor, Dirac braket, hbar, transpose, conjugate, many operators, and more." authors = ["Leedehai"] repository = "https://github.com/Leedehai/typst-physics"