> Op 23 jun 2025 om 09:11 heeft Federico Bruni <[email protected]> het
> volgende geschreven:
>
> Hi all
>
> As discussed here:
> https://github.com/frescobaldi/frescobaldi/issues/1953
>
> We are wondering if anybody uses the so called "Raster page layout" of
> Frescobaldi. You find it in the Music>Raster menu.
>
> I can see that the Raster layout puts the first half pages on the left and
> the remaining pages on the right. So an 8 page document will be laid out this
> way:
>
> 1 | 5
> 2 | 6
> 3 | 7
> 4 | 8
>
> I don't want to remove it, as I'm sure somebody may find it useful.
> I think the term Raster used in Frescobaldi GUI should be renamed to a more
> user-friendly term close to what this function actually does. Some ideas:
>
> Two pages (first half pages left, second half pages right)
> Two pages (first half left, second half right)
> Two pages (half pages left, half pages right)
Going by the code comments the layout in 2 columns is just a coincidence of
your screen-width and raster layout is supposed to dynamically manage the
number of columns in the grid based on the width of the viewing area, so on an
infinitely wide monitor you'd have
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8
and on a slighty more realistic ultrawide monitor you might get something like
1 | 4 | 7
2 | 5 | 8
3 | 6
due to the wider viewing area
and on a small viewing area you'd get
1
2
3
4
5
6
7
8
whereas the two pages layouts would always contain fixed number of columns (2)
and would scale the pages to fill the available width.
>
> What sounds best in English?
>
>
>
>