From 14e441a22f3442ac8d4ff15a58e0ac8934fdeab7 Mon Sep 17 00:00:00 2001 From: Johannes Schmitt Date: Thu, 13 Nov 2025 10:23:37 +0100 Subject: [PATCH] Left align some tables --- docs/src/DeveloperDocumentation/changelog.md | 8 ++++---- docs/src/Fields/interface.md | 4 ++-- docs/src/Fields/intro.md | 2 +- docs/src/Rings/integer.md | 2 +- src/Groups/GAPGroups.jl | 2 +- src/Groups/group_characters.jl | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/src/DeveloperDocumentation/changelog.md b/docs/src/DeveloperDocumentation/changelog.md index 908a19acb546..c692319e85e4 100644 --- a/docs/src/DeveloperDocumentation/changelog.md +++ b/docs/src/DeveloperDocumentation/changelog.md @@ -48,7 +48,7 @@ labelled. We have the following labels, along with how they are meant to be appl ### Primary Labels: Release Notes Behaviour | Label | Meaning | -|-------|---------| +|:------|:--------| | `release notes: added` | The release notes for this PR were manually added to the changelog, and should be ignored by the script | | `release notes: not needed` | This PR does not warrant an entry in the release notes. Internal only changes, like reorganization of private functions, changes to the test pipeline, etc can be tagged with this | | `release notes: use title` | The release notes for this PR should be based on the title of this PR. The script will turn \$TITLE from the PR to `[#xyz] $TITLE` | @@ -69,7 +69,7 @@ on to the next topic, which are also grouped by types, and so on. ##### PR Topics | Label | Changelog Category | -|-------------------------------|--------------------| +|:------------------------------|:-------------------| | `release notes: highlight` | Highlights | | `topic: algebraic geometry` | Changes related to Algebraic Geometry | | `topic: combinatorics` | Changes related to Combinatorics | @@ -92,7 +92,7 @@ on to the next topic, which are also grouped by types, and so on. ##### PR Types | Label | Changelog Category | -|-------------------------------|--------------------| +|:------------------------------|:-------------------| | `renaming` | Items being renamed | | `serialization` | Changes related to serializing data in the MRDI file format | | `enhancement` | New features or extended functionality | @@ -138,7 +138,7 @@ In general the description of each change should start with a verb in present tense. Here are some more concrete suggestions. | Change | Example | -|-------------------------------|--------------------| +|:------------------------------|:-------------------| | move from experimental to src/ | Graduate bla from experimental to officially supported | | feature added | Add `bla` for `blub `/ Support `bla` for `blub` / Implement `bla` | renaming things | Rename `bla` to `blub` diff --git a/docs/src/Fields/interface.md b/docs/src/Fields/interface.md index c26986be2e7a..0494e0492c93 100644 --- a/docs/src/Fields/interface.md +++ b/docs/src/Fields/interface.md @@ -11,7 +11,7 @@ We list the methods that work for any field and its elements. ## Fields | Method | Remark | -| ------ | ------ | +|:------ |:------ | | `is_finite(K)` | Return whether $K$ is finite | | `order(K)` | $\lvert K \rvert$ or error if the field is infinite | | `characteristic(K)` | $\operatorname{char}(K)$ | @@ -19,7 +19,7 @@ We list the methods that work for any field and its elements. ## Field elements | Method | Remark | -| ------ | ------ | +|:------ |:------ | | `is_one(a)` | | | `is_zero(a)` | | | `is_invertible(a)` | | diff --git a/docs/src/Fields/intro.md b/docs/src/Fields/intro.md index 0642af1561c5..f70f3b32e8cb 100644 --- a/docs/src/Fields/intro.md +++ b/docs/src/Fields/intro.md @@ -15,7 +15,7 @@ For functionality available only for specific fields, consult the corresponding Here is a list of the fields available in OSCAR: | Field | How to create | Remark | Reference | -| ------------ | ----------- | --------- |------| +|:------------ |:----------- |:--------- |:------| | $\mathbb{Q}$ | `rational_field()` | Also available as `QQ` | [Rationals](@ref rationals_section) | | $\mathbb{F}_q$ | `GF(q)` | See also `finite_field` | [Finite fields](@ref finite_fields_section) | | $\mathbb{F}_q[X]/(f)$ | `finite_field(f)` | | [Finite fields](@ref finite_fields_section)| diff --git a/docs/src/Rings/integer.md b/docs/src/Rings/integer.md index dcc5fcc2bec4..552468bb60f1 100644 --- a/docs/src/Rings/integer.md +++ b/docs/src/Rings/integer.md @@ -348,7 +348,7 @@ sign of ``r`` is the same as the sign of ``b``. Thus, if ``b > 0`` then modulus ``b`` is zero. This is summarised in the following table. remainder | division | sign | rounding -----------|------------|------------------|--------------------- +:---------|:-----------|:-----------------|:-------------------- rem | div/divrem | same as dividend | towards zero mod | | same as divisor | towards ``-\infty`` diff --git a/src/Groups/GAPGroups.jl b/src/Groups/GAPGroups.jl index 712391aef4ac..a208f440894c 100644 --- a/src/Groups/GAPGroups.jl +++ b/src/Groups/GAPGroups.jl @@ -2614,7 +2614,7 @@ about it becomes known to Oscar may yield different outputs. The following notation is used in the returned string. | Description | Syntax | -| ----------- | ----------- | +|:----------- |:----------- | | trivial group | 1 | | finite cyclic group | C | | infinite cyclic group | Z | diff --git a/src/Groups/group_characters.jl b/src/Groups/group_characters.jl index d1763ad58f40..62f491b62433 100644 --- a/src/Groups/group_characters.jl +++ b/src/Groups/group_characters.jl @@ -388,7 +388,7 @@ character table of W(B3) Currently the following series are supported. | Series | Parameter | -| ------ | ---------------- | +|:------ |:---------------- | | `:Cyclic` | pos. integer | | `:Dihedral` | even pos. integer | | `:Symmetric` | pos. integer |