Deutsch   English   Français   Italiano  
<v7udpc$bej4$2@solani.org>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!2.eu.feeder.erje.net!3.eu.feeder.erje.net!feeder.erje.net!usenet.goja.nl.eu.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: Ulrich D i e z <ud.usenetcorrespondence@web.de>
Newsgroups: de.comp.text.pdf,comp.text.pdf,sci.lang
Subject: Re: (LaTeX) This doesn't work -- \mbox{ First Line \\ Second Line}
Followup-To: comp.text.tex
Date: Thu, 25 Jul 2024 22:51:18 +0200
Message-ID: <v7udpc$bej4$2@solani.org>
References: <v7ctni$2rpmu$1@dont-email.me>
 <04520287-5836-4139-93af-4f11e085b4c9@lisse.NA>
 <v7u7ce$2dgbr$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 25 Jul 2024 20:49:49 -0000 (UTC)
Injection-Info: solani.org;
	logging-data="375396"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:60.0) Gecko/20100101
 Thunderbird/60.9.0
Cancel-Lock: sha1:u7Q57iB4DzkIQuFqo4e8C3uRMvU=
In-Reply-To: <v7u7ce$2dgbr$1@dont-email.me>
X-User-ID: eJwFwQkBwCAMBEFLebgtyAkB/EvojBKnv4EYenowWUk0m6qs7fNGVy4zKUzdutszbNTkHH4LXhCQ
Content-Language: de-DE
Bytes: 2560
Lines: 43

[Followup-To: comp.text.tex]

HenHanna wrote:

> On 7/25/2024 8:37 AM, Eberhard W Lisse wrote:
>> I don't think crossposting to 5 groups two of which not in English will
>> help.
>> 
>> el
>> 
>> On 19/07/2024 07:31, HenHanna wrote:
>>> i want 2 lines to stay together... How do i do it?
>> 
>>          [...]
> 
> 
> if i want 2 words to stay together...   First~Second
>                                          (and/or \mbox{...} )
> Shouldn't there be an easy way to do that for 2 lines?

If you want to avoid clubs and/or widows while TeX is in horizontal mpde
where it does the line-breaking for you, you can do

\widowpenalty=10000
\clubpenalty)10000

But when TeX is in the situation of having to choose between several
infinitely bad possibilities of page-breaking it might choose the one
where you get a widow or a club anyway.

If you want lines of an entire paragraph to not be broken across pages,
with LaTeX put that paragraph into a minipage environment or into a
\parbox and specify, e.g.,  the width \textwidth or \linewidth.With
LaTeX there is also an environment samepage.

With plain-TeX you can put that paragraph into a \vbox. Inside the \vbox
you may need to say s.th. like

\hsize=<width of lines of text inside the \vbox when TeX does the
line-breaking automatically>

Sincerely

Ulrich