From 9001f5407a64bbca1445166d4820e536d765d1f3 Mon Sep 17 00:00:00 2001 From: Isaac De Vlugt Date: Wed, 8 Jan 2025 16:56:15 -0500 Subject: [PATCH] sphonx --- doc/releases/changelog-0.40.0.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/releases/changelog-0.40.0.md b/doc/releases/changelog-0.40.0.md index fa5a2e8e1ea..e0f47bfbc54 100644 --- a/doc/releases/changelog-0.40.0.md +++ b/doc/releases/changelog-0.40.0.md @@ -79,14 +79,14 @@

Bosonic operators 🎈

-A new module, :doc:`qml.bose <~.bose>`, for bosonic function is available in PennyLane with the +A new module, :mod:`qml.bose `, for bosonic function is available in PennyLane with the following features. * Bosonic operators analogous to `FermiWord` and `FermiSentence` are now available with - :class:`qml.BoseWord <~pennylane.BoseWord>` and :class:`qml.BoseSentence <~pennylane.BoseSentence>`. + :class:`qml.BoseWord ` and :class:`qml.BoseSentence `. [(#6518)](https://github.com/PennyLaneAI/pennylane/pull/6518) - :class:`qml.BoseWord <~pennylane.BoseWord>` and :class:`qml.BoseSentence <~pennylane.BoseSentence>` work very + :class:`qml.BoseWord ` and :class:`qml.BoseSentence ` work very similarly compared to their fermionic counterparts. To create a Bose word, a dictionary is required as input, where the keys are tuples of boson indicies and values are `'+/-'` (denoting the bosonic creation/annihilation operators). For example, the :math:`b^{\dagger}_0 b_1` can be @@ -110,14 +110,14 @@ following features. ``` * Functionality for converting bosonic operators to qubit operators is available with - :func:`qml.unary_mapping <~pennylane.unary_mapping>`, :func:`qml.binary_mapping <~pennylane..binary_mapping>`, and - :func:`qml.christiansen_mapping <~pennylane.christiansen_mapping>`. + :func:`qml.unary_mapping `, :func:`qml.binary_mapping `, and + :func:`qml.christiansen_mapping `. [(#6623)](https://github.com/PennyLaneAI/pennylane/pull/6623) [(#6576)](https://github.com/PennyLaneAI/pennylane/pull/6576) [(#6564)](https://github.com/PennyLaneAI/pennylane/pull/6564) - All three mappings follow the same syntax, where a :class:`qml.BoseWord <~pennylane.BoseWord>` or - :class:`qml.BoseSentence <~pennylane.BoseSentence>` is required as input. + All three mappings follow the same syntax, where a :class:`qml.BoseWord ` or + :class:`qml.BoseSentence ` is required as input. ```python >>> w = qml.BoseWord({(0, 0): "+"})