From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B1D8415813A for ; Thu, 09 Jan 2025 17:37:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F316CE0769; Thu, 09 Jan 2025 17:37:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9022E0769 for ; Thu, 09 Jan 2025 17:37:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DEC49342FAD for ; Thu, 09 Jan 2025 17:37:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4675A12CA for ; Thu, 09 Jan 2025 17:37:20 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1736444193.42727c20f2d4a0a9c171fe285c741719b800b106.ulm@gentoo> Subject: [gentoo-commits] proj/pms:master commit in: / X-VCS-Repository: proj/pms X-VCS-Files: pms.cls X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 42727c20f2d4a0a9c171fe285c741719b800b106 X-VCS-Branch: master Date: Thu, 09 Jan 2025 17:37:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0be0810a-8266-4b51-8a86-11162d136b38 X-Archives-Hash: 5466d117f7c6b1a6954abd3aa1151079 commit: 42727c20f2d4a0a9c171fe285c741719b800b106 Author: Ulrich Müller gentoo org> AuthorDate: Sun Dec 1 11:28:53 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Jan 9 17:36:33 2025 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=42727c20 pms.cls: Fine-tune page breaking and float placement Signed-off-by: Ulrich Müller gentoo.org> pms.cls | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pms.cls b/pms.cls index 571232f..006aed3 100644 --- a/pms.cls +++ b/pms.cls @@ -177,6 +177,15 @@ \setlength\hfuzz{0.2pt} % was 0.1pt \setlength\emergencystretch{1em} % was 0 +% Avoid widows and orphans +\widowpenalty=500 % was 150 +\clubpenalty=500 % was 150 + +% Allow more floats on one page because we have many small tables +\setcounter{topnumber}{5} % was 2 +\setcounter{bottomnumber}{2} % was 1 +\setcounter{totalnumber}{5} % was 3 + % Don't add extra vertical space, to avoid underfull boxes. Only affects % two-sided layout, for one-sided it is already the default \raggedbottom From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9B4B91581F5 for ; Fri, 10 Jan 2025 10:04:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84FAFE084E; Fri, 10 Jan 2025 09:57:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 70C11E084E for ; Fri, 10 Jan 2025 09:57:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B3568335DEB for ; Fri, 10 Jan 2025 09:56:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46888194F for ; Fri, 10 Jan 2025 09:56:11 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1736444193.42727c20f2d4a0a9c171fe285c741719b800b106.ulm@gentoo> Subject: [gentoo-commits] proj/pms:eapi-9 commit in: / X-VCS-Repository: proj/pms X-VCS-Files: pms.cls X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 42727c20f2d4a0a9c171fe285c741719b800b106 X-VCS-Branch: eapi-9 Date: Fri, 10 Jan 2025 09:56:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a2e8819a-4b1b-4b7e-895d-e1e09f4afd74 X-Archives-Hash: 1289de238ab6097de5800a7ae0301730 Message-ID: <20250110095611.6dVXFGdAkShWxbRfBFuiNNXuiIYIX3L810PEQEkyG38@z> commit: 42727c20f2d4a0a9c171fe285c741719b800b106 Author: Ulrich Müller gentoo org> AuthorDate: Sun Dec 1 11:28:53 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Jan 9 17:36:33 2025 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=42727c20 pms.cls: Fine-tune page breaking and float placement Signed-off-by: Ulrich Müller gentoo.org> pms.cls | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pms.cls b/pms.cls index 571232f..006aed3 100644 --- a/pms.cls +++ b/pms.cls @@ -177,6 +177,15 @@ \setlength\hfuzz{0.2pt} % was 0.1pt \setlength\emergencystretch{1em} % was 0 +% Avoid widows and orphans +\widowpenalty=500 % was 150 +\clubpenalty=500 % was 150 + +% Allow more floats on one page because we have many small tables +\setcounter{topnumber}{5} % was 2 +\setcounter{bottomnumber}{2} % was 1 +\setcounter{totalnumber}{5} % was 3 + % Don't add extra vertical space, to avoid underfull boxes. Only affects % two-sided layout, for one-sided it is already the default \raggedbottom