On 27/10/2006 10:20, Jean-Marc Lasgouttes wrote: > Laurent> For example I use \bsc command in the user latex commands. > Laurent> The \bsc command is from babel package > > BTW, why does it make sense to use bsc over \textsc or LyX' \noun style? > I use it for fancy headers. Here is the example :
%----- \usepackage{fancyhdr} \pagestyle{fancy} \fancyhf{} \fancyhfoffset{1.5cm} \addtolength{\headheight}{\baselineskip} \renewcommand{\chaptermark}[1]{\markboth{\bsc{\chaptername~\thechapter{} :} #1}{}} \renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}} \lhead[\thepage]{\rightmark} \rhead[\leftmark]{\thepage} %----- I'm not a LaTeXpert but I think the difference is \bsc is put in a box to avoid line breaking. You're right, multiple \usepackage{babel} doesn't hurt but it has not really "nice looking" ;-) But I didn't know babel had to be loaded after all other packages. Laurent