>>To: [EMAIL PROTECTED] >>From: Georg Baum <[EMAIL PROTECTED]> >>Subject: Re: how to avoid hyphenating abbreviations >>Date: Wed, 31 Mar 2004 08:47:00 +0200 >>X-Gmane-NNTP-Posting-Host: 137.226.192.187 >> >>Thorsten Hirsch wrote: >> >>>> \hyphenation{LDAP} >>>> in preamble. >>> >>> But this one did not work. >> >>\hyphenation in the preamble does not work if you use babel. You have to do >>it like this: >>\usepackage{babel} >>\hyphenation{LDAP}
\AtBeginDocument{ \hyphenation{LDAP} } should work without reference to package loading order. A systematic use of this could solve the ordering problem discussed in bugzilla http://bugzilla.lyx.org/show_bug.cgi?id=1503 without introduction of a new kind of preamble. To avoid edition in the preamble window: \AtBeginDocument{ \input{my_commands.tex} } where my_commands.tex contains user defined commands, the Preamble remaining dedicated to package management. Unless LyX developers plan to give GUI acess to \AtBeginDocument{} and \AtEndDocument{] contents managements ? -- Jean-Pierre