From aadfd61c4387df2f132c56468c4decb03c712883 Mon Sep 17 00:00:00 2001 From: Florian Stecker Date: Wed, 4 Jan 2023 23:36:46 +0100 Subject: [PATCH] center images in doc --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c3eb9a8..f1eebf9 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The construction of the first automaton is explained in detail in the book by [B To explain what these automata are about, let's have a look at the tiling of the Euclidean plane by equilateral triangles, as drawn below. -![Euclidean tiling](https://florianstecker.net/git_files/coxeter_automaton/tiling.png) +![Euclidean tiling](https://florianstecker.net/git_files/coxeter_automaton/tiling.png){: .center} Any triangle in the tiling can be obtained from the gray one by successively reflecting it along some of its sides. For example, to get to the orange triangle we could use the sequences of reflections @@ -18,11 +18,11 @@ Any triangle in the tiling can be obtained from the gray one by successively ref The first two sequences are _reduced_, which means they have the minimal number of reflections (5) necessary to reach their endpoint, the orange triangle. In other words, in a reduced sequence every step gets us further away from the starting triangle. The set of all reduced sequences is described by the following automaton. Every path starting from the gray vertex corresponds to a reduced sequence, and vice-versa. -![Automaton generating all reduced words](https://florianstecker.net/git_files/coxeter_automaton/geodesic_automaton.png) +![Automaton generating all reduced words](https://florianstecker.net/git_files/coxeter_automaton/geodesic_automaton.png){: .center} In the above, multiple sequences might lead to the same triangle. To get unique labels, we can instead restrict ourselves to only the lexicographically minimal sequence for every triangle. For the orange triangle above, and with the order `red < green < blue`, that would be the sequence `red-blue-red-green-red`. The following automaton yields all lexicographically minimal reduced words. -![Automaton generating all lex reduced words](https://florianstecker.net/git_files/coxeter_automaton/lex_automaton.png) +![Automaton generating all lex reduced words](https://florianstecker.net/git_files/coxeter_automaton/lex_automaton.png){: .center} What this program can do is produce these two automata, not only for the equilateral triangle tiling, but for any [Coxeter group]. Essentially, Coxeter groups correspond to all tilings generated by reflections along the sides of a convex polyhedron in projective space, in arbitrary dimensions. This includes regular triangulations of Euclidean and hyperbolic space.