Re: Koma(book) question

2013-12-20 Thread Dr Eberhard Lisse
Guenter,

the first link actually also has a Koma reference, but your are right of
course.

The PDF is very helpful as a study guide/reference book, but difficult
to search for anything more than words, but that is the nature of PDF.

But, in the end, he got it to work, that's important :-)-O

el


on 2013-12-19, 14:14 Guenter Milde said the following:
 On 2013-12-19, Dr Eberhard Lisse wrote:
 Auntie Google is your friend.
 Look for latex section titles ie
 
 Generally a good idea.  In this case, the search term should
 include KOMA.
 
 The KOMA classes include tools for custimization that work
 differently from titlesec and do not work especially well
 together.  So generally use either KOMA-script classes (and read
 scrguide.pdf or scrguien.pdf) or titlesec (and read its
 documentation) but not both.
 
 Günter
 
 




Re: Koma(book) question

2013-12-20 Thread Dr Eberhard Lisse
Guenter,

the first link actually also has a Koma reference, but your are right of
course.

The PDF is very helpful as a study guide/reference book, but difficult
to search for anything more than words, but that is the nature of PDF.

But, in the end, he got it to work, that's important :-)-O

el


on 2013-12-19, 14:14 Guenter Milde said the following:
 On 2013-12-19, Dr Eberhard Lisse wrote:
 Auntie Google is your friend.
 Look for latex section titles ie
 
 Generally a good idea.  In this case, the search term should
 include KOMA.
 
 The KOMA classes include tools for custimization that work
 differently from titlesec and do not work especially well
 together.  So generally use either KOMA-script classes (and read
 scrguide.pdf or scrguien.pdf) or titlesec (and read its
 documentation) but not both.
 
 Günter
 
 




Re: Koma(book) question

2013-12-20 Thread Dr Eberhard Lisse
Guenter,

the first link actually also has a Koma reference, but your are right of
course.

The PDF is very helpful as a study guide/reference book, but difficult
to search for anything more than words, but that is the nature of PDF.

But, in the end, he got it to work, that's important :-)-O

el


on 2013-12-19, 14:14 Guenter Milde said the following:
> On 2013-12-19, Dr Eberhard Lisse wrote:
>> Auntie Google is your friend.
>> Look for latex "section titles" ie
> 
> Generally a good idea.  In this case, the search term should
> include "KOMA".
> 
> The KOMA classes include tools for custimization that work
> differently from "titlesec" and do not work especially well
> together.  So generally use either KOMA-script classes (and read
> "scrguide.pdf" or scrguien.pdf") or "titlesec" (and read its
> documentation) but not both.
> 
> Günter
> 
> 




Re: Koma(book) question

2013-12-19 Thread Dr Eberhard Lisse
Auntie Google is your friend.

Look for latex section titles ie

https://www.google.com.na/search?q=latex+section+titlesoq=latex+section+titlesaqs=chrome..69i57.4700j0j1sourceid=chromeespv=210es_sm=119ie=UTF-8#es_sm=119espv=210q=latex+%22section+titles%22

First link:

http://tex.stackexchange.com/questions/36609/formatting-section-titles


\usepackage[explicit]{titlesec}
\titleformat{\section}
  {\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}


Personally I like Small Caps, ie

\titleformat{\section}
  {\normalfont\scshape}{\thesection}{1em}{}

Gruss aus dem Süden,

el

on 2013-12-18, 09:57 Wolfgang Engelmann said the following:
[...]
 Thanks.
 
 Found out that \addtokomafont
 
 und
 
 \setkomafont
 
 are the keys for my problem.
 
  
 
 What I do not know yet, is, how to set the section titles in CAPITALS
 
  
 
 Wolfgang
[...]



Re: Koma(book) question

2013-12-19 Thread Wolfgang Engelmann
On Thursday 19 December 2013 10:53:21 Dr Eberhard Lisse wrote:

This is what I found and tried:
\setkomafont{chapter}{\uppercase}
\setkomafont{section}{\uppercase} 
(or \setkomafont{section}{\normalfont\uppercase})
It does, what it should;

however, the 
\setkomafont{section}{\uppercase} 
prevents the crossreference to other sections in the text 
and the pdf output shows ?? instead, such as
Cyanobacteria (Section ??),

Using your proposal

 \usepackage[explicit]{titlesec}
 \titleformat{\section}
   {\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}

gives me for all sec: crossreferences this:

LaTeX Warning: Reference `sec:LIGHT-AND-THE-HUMAN' on page 2 undefined on 
input
 line 152.

! Undefined control sequence.
\label #1-\@bsphack \begingroup \def \label@name 
  {#1}\label@hook 
\protected...
l.158 ...ical Clocks\label{sec:BIOLOGICAL-CLOCKS}}
  
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

Thanks anyway for the feedback. 
I guess I should not bother this User group further 
and try to find an answer at the Koma-group 

or, probably the best solution, leave it to the publisher.

Wolfgang

 Auntie Google is your friend.
 
 Look for latex section titles ie
 
 https://www.google.com.na/search?q=latex+section+titlesoq=latex+section
 +titlesaqs=chrome..69i57.4700j0j1sourceid=chromeespv=210es_sm=119ie
 =UTF-8#es_sm=119espv=210q=latex+%22section+titles%22
 
 First link:
 
 http://tex.stackexchange.com/questions/36609/formatting-section-titles
 
 
 \usepackage[explicit]{titlesec}
 \titleformat{\section}
   {\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}
 
 
 Personally I like Small Caps, ie
 
 \titleformat{\section}
   {\normalfont\scshape}{\thesection}{1em}{}
 
 Gruss aus dem Süden,
 
 el
 
 on 2013-12-18, 09:57 Wolfgang Engelmann said the following:
 [...]
 
  Thanks.
  
  Found out that \addtokomafont
  
  und
  
  \setkomafont
  
  are the keys for my problem.
  
  
  
  What I do not know yet, is, how to set the section titles in CAPITALS
  
  
  
  Wolfgang
 
 [...]



Re: Koma(book) question

2013-12-19 Thread Wolfgang Engelmann
On Thursday 19 December 2013 12:16:13 Wolfgang Engelmann wrote:

I just found out that 
\addtokomafont
instead of 
 \setkomafont
solves the crossreference problem.

Wolfgang

 
 This is what I found and tried:
 \setkomafont{chapter}{\uppercase}
 \setkomafont{section}{\uppercase}
 (or \setkomafont{section}{\normalfont\uppercase})
 It does, what it should;
 
 however, the
 \setkomafont{section}{\uppercase}
 prevents the crossreference to other sections in the text
 and the pdf output shows ?? instead, such as
 Cyanobacteria (Section ??),
 
 Using your proposal
 
  \usepackage[explicit]{titlesec}
  \titleformat{\section}
{\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}
 
 gives me for all sec: crossreferences this:
 
 LaTeX Warning: Reference `sec:LIGHT-AND-THE-HUMAN' on page 2 undefined
 on input
  line 152.
 
 ! Undefined control sequence.
 \label #1-\@bsphack \begingroup \def \label@name
   {#1}\label@hook
 \protected...
 l.158 ...ical Clocks\label{sec:BIOLOGICAL-CLOCKS}}
 
 The control sequence at the end of the top line
 of your error message was never \def'ed. If you have
 misspelled it (e.g., `\hobx'), type `I' and the correct
 spelling (e.g., `I\hbox'). Otherwise just continue,
 and I'll forget about whatever was undefined.
 
 Thanks anyway for the feedback.
 I guess I should not bother this User group further
 and try to find an answer at the Koma-group
 
 or, probably the best solution, leave it to the publisher.
 
 Wolfgang
 
  Auntie Google is your friend.
  
  Look for latex section titles ie
  
  https://www.google.com.na/search?q=latex+section+titlesoq=latex+secti
  on
  +titlesaqs=chrome..69i57.4700j0j1sourceid=chromeespv=210es_sm=119
  ie =UTF-8#es_sm=119espv=210q=latex+%22section+titles%22
  
  First link:
  
  http://tex.stackexchange.com/questions/36609/formatting-section-titles
  
  
  \usepackage[explicit]{titlesec}
  \titleformat{\section}
  
{\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}
  
  Personally I like Small Caps, ie
  
  \titleformat{\section}
  
{\normalfont\scshape}{\thesection}{1em}{}
  
  Gruss aus dem Süden,
  
  el
  
  on 2013-12-18, 09:57 Wolfgang Engelmann said the following:
  [...]
  
   Thanks.
   
   Found out that \addtokomafont
   
   und
   
   \setkomafont
   
   are the keys for my problem.
   
   
   
   What I do not know yet, is, how to set the section titles in
   CAPITALS
   
   
   
   Wolfgang
  
  [...]

-- 
-
Wolfgang Engelmann
Schlossgartenstrasse 22
D-72070 Tübingen
Tel 07071 68325


Re: Koma(book) question

2013-12-19 Thread Julien Rioux

On 19/12/2013 6:16 AM, Wolfgang Engelmann wrote:

On Thursday 19 December 2013 10:53:21 Dr Eberhard Lisse wrote:

This is what I found and tried:

\setkomafont{chapter}{\uppercase}

\setkomafont{section}{\uppercase}

(or \setkomafont{section}{\normalfont\uppercase})

It does, what it should;

however, the

\setkomafont{section}{\uppercase}

prevents the crossreference to other sections in the text

and the pdf output shows ?? instead, such as

Cyanobacteria (Section ??),

Using your proposal

\usepackage[explicit]{titlesec}

\titleformat{\section}

{\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}

gives me for all sec: crossreferences this:

LaTeX Warning: Reference `sec:LIGHT-AND-THE-HUMAN' on page 2 undefined
on input

line 152.

! Undefined control sequence.

\label #1-\@bsphack \begingroup \def \label@name

{#1}\label@hook \protected...

l.158 ...ical Clocks\label{sec:BIOLOGICAL-CLOCKS}}



It looks like you have labels inside the section titles, and now the 
labels are being capitalized. They probably should be moved outside, 
exactly after the section title on a Standard line.


--
Julien



Re: Koma(book) question

2013-12-19 Thread Guenter Milde
On 2013-12-19, Dr Eberhard Lisse wrote:
 Auntie Google is your friend.
 Look for latex section titles ie

Generally a good idea. In this case, the search term should include KOMA.

The KOMA classes include tools for custimization that work differently from
titlesec and do not work especially well together. So generally use either
KOMA-script classes (and read scrguide.pdf or scrguien.pdf) or titlesec
(and read its documentation) but not both.

Günter



Re: Koma(book) question

2013-12-19 Thread Dr Eberhard Lisse
Auntie Google is your friend.

Look for latex section titles ie

https://www.google.com.na/search?q=latex+section+titlesoq=latex+section+titlesaqs=chrome..69i57.4700j0j1sourceid=chromeespv=210es_sm=119ie=UTF-8#es_sm=119espv=210q=latex+%22section+titles%22

First link:

http://tex.stackexchange.com/questions/36609/formatting-section-titles


\usepackage[explicit]{titlesec}
\titleformat{\section}
  {\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}


Personally I like Small Caps, ie

\titleformat{\section}
  {\normalfont\scshape}{\thesection}{1em}{}

Gruss aus dem Süden,

el

on 2013-12-18, 09:57 Wolfgang Engelmann said the following:
[...]
 Thanks.
 
 Found out that \addtokomafont
 
 und
 
 \setkomafont
 
 are the keys for my problem.
 
  
 
 What I do not know yet, is, how to set the section titles in CAPITALS
 
  
 
 Wolfgang
[...]



Re: Koma(book) question

2013-12-19 Thread Wolfgang Engelmann
On Thursday 19 December 2013 10:53:21 Dr Eberhard Lisse wrote:

This is what I found and tried:
\setkomafont{chapter}{\uppercase}
\setkomafont{section}{\uppercase} 
(or \setkomafont{section}{\normalfont\uppercase})
It does, what it should;

however, the 
\setkomafont{section}{\uppercase} 
prevents the crossreference to other sections in the text 
and the pdf output shows ?? instead, such as
Cyanobacteria (Section ??),

Using your proposal

 \usepackage[explicit]{titlesec}
 \titleformat{\section}
   {\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}

gives me for all sec: crossreferences this:

LaTeX Warning: Reference `sec:LIGHT-AND-THE-HUMAN' on page 2 undefined on 
input
 line 152.

! Undefined control sequence.
\label #1-\@bsphack \begingroup \def \label@name 
  {#1}\label@hook 
\protected...
l.158 ...ical Clocks\label{sec:BIOLOGICAL-CLOCKS}}
  
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

Thanks anyway for the feedback. 
I guess I should not bother this User group further 
and try to find an answer at the Koma-group 

or, probably the best solution, leave it to the publisher.

Wolfgang

 Auntie Google is your friend.
 
 Look for latex section titles ie
 
 https://www.google.com.na/search?q=latex+section+titlesoq=latex+section
 +titlesaqs=chrome..69i57.4700j0j1sourceid=chromeespv=210es_sm=119ie
 =UTF-8#es_sm=119espv=210q=latex+%22section+titles%22
 
 First link:
 
 http://tex.stackexchange.com/questions/36609/formatting-section-titles
 
 
 \usepackage[explicit]{titlesec}
 \titleformat{\section}
   {\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}
 
 
 Personally I like Small Caps, ie
 
 \titleformat{\section}
   {\normalfont\scshape}{\thesection}{1em}{}
 
 Gruss aus dem Süden,
 
 el
 
 on 2013-12-18, 09:57 Wolfgang Engelmann said the following:
 [...]
 
  Thanks.
  
  Found out that \addtokomafont
  
  und
  
  \setkomafont
  
  are the keys for my problem.
  
  
  
  What I do not know yet, is, how to set the section titles in CAPITALS
  
  
  
  Wolfgang
 
 [...]



Re: Koma(book) question

2013-12-19 Thread Wolfgang Engelmann
On Thursday 19 December 2013 12:16:13 Wolfgang Engelmann wrote:

I just found out that 
\addtokomafont
instead of 
 \setkomafont
solves the crossreference problem.

Wolfgang

 
 This is what I found and tried:
 \setkomafont{chapter}{\uppercase}
 \setkomafont{section}{\uppercase}
 (or \setkomafont{section}{\normalfont\uppercase})
 It does, what it should;
 
 however, the
 \setkomafont{section}{\uppercase}
 prevents the crossreference to other sections in the text
 and the pdf output shows ?? instead, such as
 Cyanobacteria (Section ??),
 
 Using your proposal
 
  \usepackage[explicit]{titlesec}
  \titleformat{\section}
{\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}
 
 gives me for all sec: crossreferences this:
 
 LaTeX Warning: Reference `sec:LIGHT-AND-THE-HUMAN' on page 2 undefined
 on input
  line 152.
 
 ! Undefined control sequence.
 \label #1-\@bsphack \begingroup \def \label@name
   {#1}\label@hook
 \protected...
 l.158 ...ical Clocks\label{sec:BIOLOGICAL-CLOCKS}}
 
 The control sequence at the end of the top line
 of your error message was never \def'ed. If you have
 misspelled it (e.g., `\hobx'), type `I' and the correct
 spelling (e.g., `I\hbox'). Otherwise just continue,
 and I'll forget about whatever was undefined.
 
 Thanks anyway for the feedback.
 I guess I should not bother this User group further
 and try to find an answer at the Koma-group
 
 or, probably the best solution, leave it to the publisher.
 
 Wolfgang
 
  Auntie Google is your friend.
  
  Look for latex section titles ie
  
  https://www.google.com.na/search?q=latex+section+titlesoq=latex+secti
  on
  +titlesaqs=chrome..69i57.4700j0j1sourceid=chromeespv=210es_sm=119
  ie =UTF-8#es_sm=119espv=210q=latex+%22section+titles%22
  
  First link:
  
  http://tex.stackexchange.com/questions/36609/formatting-section-titles
  
  
  \usepackage[explicit]{titlesec}
  \titleformat{\section}
  
{\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}
  
  Personally I like Small Caps, ie
  
  \titleformat{\section}
  
{\normalfont\scshape}{\thesection}{1em}{}
  
  Gruss aus dem Süden,
  
  el
  
  on 2013-12-18, 09:57 Wolfgang Engelmann said the following:
  [...]
  
   Thanks.
   
   Found out that \addtokomafont
   
   und
   
   \setkomafont
   
   are the keys for my problem.
   
   
   
   What I do not know yet, is, how to set the section titles in
   CAPITALS
   
   
   
   Wolfgang
  
  [...]

-- 
-
Wolfgang Engelmann
Schlossgartenstrasse 22
D-72070 Tübingen
Tel 07071 68325


Re: Koma(book) question

2013-12-19 Thread Julien Rioux

On 19/12/2013 6:16 AM, Wolfgang Engelmann wrote:

On Thursday 19 December 2013 10:53:21 Dr Eberhard Lisse wrote:

This is what I found and tried:

\setkomafont{chapter}{\uppercase}

\setkomafont{section}{\uppercase}

(or \setkomafont{section}{\normalfont\uppercase})

It does, what it should;

however, the

\setkomafont{section}{\uppercase}

prevents the crossreference to other sections in the text

and the pdf output shows ?? instead, such as

Cyanobacteria (Section ??),

Using your proposal

\usepackage[explicit]{titlesec}

\titleformat{\section}

{\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}

gives me for all sec: crossreferences this:

LaTeX Warning: Reference `sec:LIGHT-AND-THE-HUMAN' on page 2 undefined
on input

line 152.

! Undefined control sequence.

\label #1-\@bsphack \begingroup \def \label@name

{#1}\label@hook \protected...

l.158 ...ical Clocks\label{sec:BIOLOGICAL-CLOCKS}}



It looks like you have labels inside the section titles, and now the 
labels are being capitalized. They probably should be moved outside, 
exactly after the section title on a Standard line.


--
Julien



Re: Koma(book) question

2013-12-19 Thread Guenter Milde
On 2013-12-19, Dr Eberhard Lisse wrote:
 Auntie Google is your friend.
 Look for latex section titles ie

Generally a good idea. In this case, the search term should include KOMA.

The KOMA classes include tools for custimization that work differently from
titlesec and do not work especially well together. So generally use either
KOMA-script classes (and read scrguide.pdf or scrguien.pdf) or titlesec
(and read its documentation) but not both.

Günter



Re: Koma(book) question

2013-12-19 Thread Dr Eberhard Lisse
Auntie Google is your friend.

Look for latex "section titles" ie

https://www.google.com.na/search?q=latex+section+titles=latex+section+titles=chrome..69i57.4700j0j1=chrome=210_sm=119=UTF-8#es_sm=119=210=latex+%22section+titles%22

First link:

http://tex.stackexchange.com/questions/36609/formatting-section-titles


\usepackage[explicit]{titlesec}
\titleformat{\section}
  {\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}


Personally I like Small Caps, ie

\titleformat{\section}
  {\normalfont\scshape}{\thesection}{1em}{}

Gruss aus dem Süden,

el

on 2013-12-18, 09:57 Wolfgang Engelmann said the following:
[...]
> Thanks.
> 
> Found out that \addtokomafont
> 
> und
> 
> \setkomafont
> 
> are the keys for my problem.
> 
>  
> 
> What I do not know yet, is, how to set the section titles in CAPITALS
> 
>  
> 
> Wolfgang
[...]



Re: Koma(book) question

2013-12-19 Thread Wolfgang Engelmann
On Thursday 19 December 2013 10:53:21 Dr Eberhard Lisse wrote:

This is what I found and tried:
\setkomafont{chapter}{\uppercase}
\setkomafont{section}{\uppercase} 
(or \setkomafont{section}{\normalfont\uppercase})
It does, what it should;

however, the 
\setkomafont{section}{\uppercase} 
prevents the crossreference to other sections in the text 
and the pdf output shows ?? instead, such as
Cyanobacteria (Section ??),

Using your proposal

 \usepackage[explicit]{titlesec}
 \titleformat{\section}
   {\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}

gives me for all sec: crossreferences this:

LaTeX Warning: Reference `sec:LIGHT-AND-THE-HUMAN' on page 2 undefined on 
input
 line 152.

! Undefined control sequence.
\label #1->\@bsphack \begingroup \def \label@name 
  {#1}\label@hook 
\protected...
l.158 ...ical Clocks\label{sec:BIOLOGICAL-CLOCKS}}
  
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

Thanks anyway for the feedback. 
I guess I should not bother this User group further 
and try to find an answer at the Koma-group 

or, probably the best solution, leave it to the publisher.

Wolfgang

> Auntie Google is your friend.
> 
> Look for latex "section titles" ie
> 
> https://www.google.com.na/search?q=latex+section+titles=latex+section
> +titles=chrome..69i57.4700j0j1=chrome=210_sm=119
> =UTF-8#es_sm=119=210=latex+%22section+titles%22
> 
> First link:
> 
> http://tex.stackexchange.com/questions/36609/formatting-section-titles
> 
> 
> \usepackage[explicit]{titlesec}
> \titleformat{\section}
>   {\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}
> 
> 
> Personally I like Small Caps, ie
> 
> \titleformat{\section}
>   {\normalfont\scshape}{\thesection}{1em}{}
> 
> Gruss aus dem Süden,
> 
> el
> 
> on 2013-12-18, 09:57 Wolfgang Engelmann said the following:
> [...]
> 
> > Thanks.
> > 
> > Found out that \addtokomafont
> > 
> > und
> > 
> > \setkomafont
> > 
> > are the keys for my problem.
> > 
> > 
> > 
> > What I do not know yet, is, how to set the section titles in CAPITALS
> > 
> > 
> > 
> > Wolfgang
> 
> [...]



Re: Koma(book) question

2013-12-19 Thread Wolfgang Engelmann
On Thursday 19 December 2013 12:16:13 Wolfgang Engelmann wrote:

I just found out that 
\addtokomafont
instead of 
 \setkomafont
solves the crossreference problem.

Wolfgang

> 
> This is what I found and tried:
> \setkomafont{chapter}{\uppercase}
> \setkomafont{section}{\uppercase}
> (or \setkomafont{section}{\normalfont\uppercase})
> It does, what it should;
> 
> however, the
> \setkomafont{section}{\uppercase}
> prevents the crossreference to other sections in the text
> and the pdf output shows ?? instead, such as
> Cyanobacteria (Section ??),
> 
> Using your proposal
> 
>  \usepackage[explicit]{titlesec}
>  \titleformat{\section}
>{\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}
> 
> gives me for all sec: crossreferences this:
> 
> LaTeX Warning: Reference `sec:LIGHT-AND-THE-HUMAN' on page 2 undefined
> on input
>  line 152.
> 
> ! Undefined control sequence.
> \label #1->\@bsphack \begingroup \def \label@name
>   {#1}\label@hook
> \protected...
> l.158 ...ical Clocks\label{sec:BIOLOGICAL-CLOCKS}}
> 
> The control sequence at the end of the top line
> of your error message was never \def'ed. If you have
> misspelled it (e.g., `\hobx'), type `I' and the correct
> spelling (e.g., `I\hbox'). Otherwise just continue,
> and I'll forget about whatever was undefined.
> 
> Thanks anyway for the feedback.
> I guess I should not bother this User group further
> and try to find an answer at the Koma-group
> 
> or, probably the best solution, leave it to the publisher.
> 
> Wolfgang
> 
> > Auntie Google is your friend.
> > 
> > Look for latex "section titles" ie
> > 
> > https://www.google.com.na/search?q=latex+section+titles=latex+secti
> > on
> > +titles=chrome..69i57.4700j0j1=chrome=210_sm=119
> >  =UTF-8#es_sm=119=210=latex+%22section+titles%22
> > 
> > First link:
> > 
> > http://tex.stackexchange.com/questions/36609/formatting-section-titles
> > 
> > 
> > \usepackage[explicit]{titlesec}
> > \titleformat{\section}
> > 
> >   {\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}
> > 
> > Personally I like Small Caps, ie
> > 
> > \titleformat{\section}
> > 
> >   {\normalfont\scshape}{\thesection}{1em}{}
> > 
> > Gruss aus dem Süden,
> > 
> > el
> > 
> > on 2013-12-18, 09:57 Wolfgang Engelmann said the following:
> > [...]
> > 
> > > Thanks.
> > > 
> > > Found out that \addtokomafont
> > > 
> > > und
> > > 
> > > \setkomafont
> > > 
> > > are the keys for my problem.
> > > 
> > > 
> > > 
> > > What I do not know yet, is, how to set the section titles in
> > > CAPITALS
> > > 
> > > 
> > > 
> > > Wolfgang
> > 
> > [...]

-- 
-
Wolfgang Engelmann
Schlossgartenstrasse 22
D-72070 Tübingen
Tel 07071 68325


Re: Koma(book) question

2013-12-19 Thread Julien Rioux

On 19/12/2013 6:16 AM, Wolfgang Engelmann wrote:

On Thursday 19 December 2013 10:53:21 Dr Eberhard Lisse wrote:

This is what I found and tried:

\setkomafont{chapter}{\uppercase}

\setkomafont{section}{\uppercase}

(or \setkomafont{section}{\normalfont\uppercase})

It does, what it should;

however, the

\setkomafont{section}{\uppercase}

prevents the crossreference to other sections in the text

and the pdf output shows ?? instead, such as

Cyanobacteria (Section ??),

Using your proposal

\usepackage[explicit]{titlesec}

\titleformat{\section}

{\normalfont}{\thesection}{1em}{\MakeUppercase{#1}}

gives me for all sec: crossreferences this:

LaTeX Warning: Reference `sec:LIGHT-AND-THE-HUMAN' on page 2 undefined
on input

line 152.

! Undefined control sequence.

\label #1->\@bsphack \begingroup \def \label@name

{#1}\label@hook \protected...

l.158 ...ical Clocks\label{sec:BIOLOGICAL-CLOCKS}}



It looks like you have labels inside the section titles, and now the 
labels are being capitalized. They probably should be moved outside, 
exactly after the section title on a Standard line.


--
Julien



Re: Koma(book) question

2013-12-19 Thread Guenter Milde
On 2013-12-19, Dr Eberhard Lisse wrote:
> Auntie Google is your friend.
> Look for latex "section titles" ie

Generally a good idea. In this case, the search term should include "KOMA".

The KOMA classes include tools for custimization that work differently from
"titlesec" and do not work especially well together. So generally use either
KOMA-script classes (and read "scrguide.pdf" or scrguien.pdf") or "titlesec"
(and read its documentation) but not both.

Günter



Re: Koma(book) question

2013-12-17 Thread Dr Eberhard Lisse
Try

de.comp.text.tex
http://komascript.de

el


On 2013-12-16, 10:58 , Wolfgang Engelmann wrote:
 On Monday 16 December 2013 00:17:38 Dr Eberhard Lisse wrote:

 Wolfgang,



 This is a LaTeX question, and I am sure this isn't really difficult, but

 why don't you ask Markus Kohm directly?





 el



 Thanks, Eberhard,



 since I did not get an answer to my question so far, I have asked at

 tex-...@listserv.dfn.de

 were Markus Kohm is often looking. Hope, he or somebody else finds the
 time and a solution. It is probably just a matter of finding the right
 page in Markus Kohms book.



 Wolfgang



Re: Koma(book) question

2013-12-17 Thread Wolfgang Engelmann
On Tuesday 17 December 2013 21:01:13 Dr Eberhard Lisse wrote:
 Try
 
   de.comp.text.tex
   http://komascript.de
 
 el

Thanks.
Found out that \addtokomafont
und
\setkomafont
are the keys for my problem. 

What I do not know yet, is, how to set the section titles in CAPITALS

Wolfgang
 
 On 2013-12-16, 10:58 , Wolfgang Engelmann wrote:
  On Monday 16 December 2013 00:17:38 Dr Eberhard Lisse wrote:
  Wolfgang,
  
  
  
  This is a LaTeX question, and I am sure this isn't really difficult,
  but
  
  why don't you ask Markus Kohm directly?
  
  
  
  
  
  el
  
  Thanks, Eberhard,
  
  
  
  since I did not get an answer to my question so far, I have asked at
  
  tex-...@listserv.dfn.de
  
  were Markus Kohm is often looking. Hope, he or somebody else finds the
  time and a solution. It is probably just a matter of finding the right
  page in Markus Kohms book.
  
  
  
  Wolfgang


Re: Koma(book) question

2013-12-17 Thread Dr Eberhard Lisse
Try

de.comp.text.tex
http://komascript.de

el


On 2013-12-16, 10:58 , Wolfgang Engelmann wrote:
 On Monday 16 December 2013 00:17:38 Dr Eberhard Lisse wrote:

 Wolfgang,



 This is a LaTeX question, and I am sure this isn't really difficult, but

 why don't you ask Markus Kohm directly?





 el



 Thanks, Eberhard,



 since I did not get an answer to my question so far, I have asked at

 tex-...@listserv.dfn.de

 were Markus Kohm is often looking. Hope, he or somebody else finds the
 time and a solution. It is probably just a matter of finding the right
 page in Markus Kohms book.



 Wolfgang



Re: Koma(book) question

2013-12-17 Thread Wolfgang Engelmann
On Tuesday 17 December 2013 21:01:13 Dr Eberhard Lisse wrote:
 Try
 
   de.comp.text.tex
   http://komascript.de
 
 el

Thanks.
Found out that \addtokomafont
und
\setkomafont
are the keys for my problem. 

What I do not know yet, is, how to set the section titles in CAPITALS

Wolfgang
 
 On 2013-12-16, 10:58 , Wolfgang Engelmann wrote:
  On Monday 16 December 2013 00:17:38 Dr Eberhard Lisse wrote:
  Wolfgang,
  
  
  
  This is a LaTeX question, and I am sure this isn't really difficult,
  but
  
  why don't you ask Markus Kohm directly?
  
  
  
  
  
  el
  
  Thanks, Eberhard,
  
  
  
  since I did not get an answer to my question so far, I have asked at
  
  tex-...@listserv.dfn.de
  
  were Markus Kohm is often looking. Hope, he or somebody else finds the
  time and a solution. It is probably just a matter of finding the right
  page in Markus Kohms book.
  
  
  
  Wolfgang


Re: Koma(book) question

2013-12-17 Thread Dr Eberhard Lisse
Try

de.comp.text.tex
http://komascript.de

el


On 2013-12-16, 10:58 , Wolfgang Engelmann wrote:
> On Monday 16 December 2013 00:17:38 Dr Eberhard Lisse wrote:
>
>> Wolfgang,
>
>>
>
>> This is a LaTeX question, and I am sure this isn't really difficult, but
>
>> why don't you ask Markus Kohm directly?
>
>>
>
>>
>
>> el
>
>
>
> Thanks, Eberhard,
>
>
>
> since I did not get an answer to my question so far, I have asked at
>
> tex-...@listserv.dfn.de
>
> were Markus Kohm is often looking. Hope, he or somebody else finds the
> time and a solution. It is probably just a matter of finding the right
> page in Markus Kohms book.
>
>
>
> Wolfgang



Re: Koma(book) question

2013-12-17 Thread Wolfgang Engelmann
On Tuesday 17 December 2013 21:01:13 Dr Eberhard Lisse wrote:
> Try
> 
>   de.comp.text.tex
>   http://komascript.de
> 
> el

Thanks.
Found out that \addtokomafont
und
\setkomafont
are the keys for my problem. 

What I do not know yet, is, how to set the section titles in CAPITALS

Wolfgang
> 
> On 2013-12-16, 10:58 , Wolfgang Engelmann wrote:
> > On Monday 16 December 2013 00:17:38 Dr Eberhard Lisse wrote:
> >> Wolfgang,
> >> 
> >> 
> >> 
> >> This is a LaTeX question, and I am sure this isn't really difficult,
> >> but
> >> 
> >> why don't you ask Markus Kohm directly?
> >> 
> >> 
> >> 
> >> 
> >> 
> >> el
> > 
> > Thanks, Eberhard,
> > 
> > 
> > 
> > since I did not get an answer to my question so far, I have asked at
> > 
> > tex-...@listserv.dfn.de
> > 
> > were Markus Kohm is often looking. Hope, he or somebody else finds the
> > time and a solution. It is probably just a matter of finding the right
> > page in Markus Kohms book.
> > 
> > 
> > 
> > Wolfgang


Re: Koma(book) question

2013-12-16 Thread Wolfgang Engelmann
On Monday 16 December 2013 00:17:38 Dr Eberhard Lisse wrote:
 Wolfgang,
 
 This is a LaTeX question, and I am sure this isn't really difficult, but
 why don't you ask Markus Kohm directly?
 
 
 el

Thanks, Eberhard,

 since I did not get an answer to my question so far, I have asked at
tex-...@listserv.dfn.de
were Markus Kohm is often looking. Hope, he or somebody else finds the time 
and a solution. It is probably just a matter of finding the right page in 
Markus Kohms book.

Wolfgang
 
 On 2013-12-13, 14:49 , Wolfgang Engelmann wrote:
  Hello,
  
  
  
  i have a few questions re koma (book).
  
  The chapter title I am writing is supposed to be in capitals
  
  18. THE BIOLOGICAL CLOCK
  
  The sections
  
  1. OVERVIEW
  
  the subsections
  
  2.1 Spectrum of Rhythms (in italics)
  
  the Acknowledgements without number
  
  ACKNOWLEDGEMENTS
  
  and the references
  
  REFERENCES
  
  all of it centered except the subsections. which start left
  
  
  
  I bought the new edition of the Koma book, but could not find the
  adequate place. Could somebody tell me?
  
  
  
  Wolfgang

-- 
-
Wolfgang Engelmann
Schlossgartenstrasse 22
D-72070 Tübingen
Tel 07071 68325


Re: Koma(book) question

2013-12-16 Thread Wolfgang Engelmann
On Monday 16 December 2013 00:17:38 Dr Eberhard Lisse wrote:
 Wolfgang,
 
 This is a LaTeX question, and I am sure this isn't really difficult, but
 why don't you ask Markus Kohm directly?
 
 
 el

Thanks, Eberhard,

 since I did not get an answer to my question so far, I have asked at
tex-...@listserv.dfn.de
were Markus Kohm is often looking. Hope, he or somebody else finds the time 
and a solution. It is probably just a matter of finding the right page in 
Markus Kohms book.

Wolfgang
 
 On 2013-12-13, 14:49 , Wolfgang Engelmann wrote:
  Hello,
  
  
  
  i have a few questions re koma (book).
  
  The chapter title I am writing is supposed to be in capitals
  
  18. THE BIOLOGICAL CLOCK
  
  The sections
  
  1. OVERVIEW
  
  the subsections
  
  2.1 Spectrum of Rhythms (in italics)
  
  the Acknowledgements without number
  
  ACKNOWLEDGEMENTS
  
  and the references
  
  REFERENCES
  
  all of it centered except the subsections. which start left
  
  
  
  I bought the new edition of the Koma book, but could not find the
  adequate place. Could somebody tell me?
  
  
  
  Wolfgang

-- 
-
Wolfgang Engelmann
Schlossgartenstrasse 22
D-72070 Tübingen
Tel 07071 68325


Re: Koma(book) question

2013-12-16 Thread Wolfgang Engelmann
On Monday 16 December 2013 00:17:38 Dr Eberhard Lisse wrote:
> Wolfgang,
> 
> This is a LaTeX question, and I am sure this isn't really difficult, but
> why don't you ask Markus Kohm directly?
> 
> 
> el

Thanks, Eberhard,

 since I did not get an answer to my question so far, I have asked at
tex-...@listserv.dfn.de
were Markus Kohm is often looking. Hope, he or somebody else finds the time 
and a solution. It is probably just a matter of finding the right page in 
Markus Kohms book.

Wolfgang
> 
> On 2013-12-13, 14:49 , Wolfgang Engelmann wrote:
> > Hello,
> > 
> > 
> > 
> > i have a few questions re koma (book).
> > 
> > The chapter title I am writing is supposed to be in capitals
> > 
> > 18. THE BIOLOGICAL CLOCK
> > 
> > The sections
> > 
> > 1. OVERVIEW
> > 
> > the subsections
> > 
> > 2.1 Spectrum of Rhythms (in italics)
> > 
> > the Acknowledgements without number
> > 
> > ACKNOWLEDGEMENTS
> > 
> > and the references
> > 
> > REFERENCES
> > 
> > all of it centered except the subsections. which start left
> > 
> > 
> > 
> > I bought the new edition of the Koma book, but could not find the
> > adequate place. Could somebody tell me?
> > 
> > 
> > 
> > Wolfgang

-- 
-
Wolfgang Engelmann
Schlossgartenstrasse 22
D-72070 Tübingen
Tel 07071 68325


Re: Koma(book) question

2013-12-15 Thread Dr Eberhard Lisse
Wolfgang,

This is a LaTeX question, and I am sure this isn't really difficult, but
why don't you ask Markus Kohm directly?


el


On 2013-12-13, 14:49 , Wolfgang Engelmann wrote:
 Hello,
 
  
 
 i have a few questions re koma (book).
 
 The chapter title I am writing is supposed to be in capitals
 
 18. THE BIOLOGICAL CLOCK
 
 The sections
 
 1. OVERVIEW
 
 the subsections
 
 2.1 Spectrum of Rhythms (in italics)
 
 the Acknowledgements without number
 
 ACKNOWLEDGEMENTS
 
 and the references
 
 REFERENCES
 
 all of it centered except the subsections. which start left
 
  
 
 I bought the new edition of the Koma book, but could not find the
 adequate place. Could somebody tell me?
 
  
 
 Wolfgang
 




Re: Koma(book) question

2013-12-15 Thread Dr Eberhard Lisse
Wolfgang,

This is a LaTeX question, and I am sure this isn't really difficult, but
why don't you ask Markus Kohm directly?


el


On 2013-12-13, 14:49 , Wolfgang Engelmann wrote:
 Hello,
 
  
 
 i have a few questions re koma (book).
 
 The chapter title I am writing is supposed to be in capitals
 
 18. THE BIOLOGICAL CLOCK
 
 The sections
 
 1. OVERVIEW
 
 the subsections
 
 2.1 Spectrum of Rhythms (in italics)
 
 the Acknowledgements without number
 
 ACKNOWLEDGEMENTS
 
 and the references
 
 REFERENCES
 
 all of it centered except the subsections. which start left
 
  
 
 I bought the new edition of the Koma book, but could not find the
 adequate place. Could somebody tell me?
 
  
 
 Wolfgang
 




Re: Koma(book) question

2013-12-15 Thread Dr Eberhard Lisse
Wolfgang,

This is a LaTeX question, and I am sure this isn't really difficult, but
why don't you ask Markus Kohm directly?


el


On 2013-12-13, 14:49 , Wolfgang Engelmann wrote:
> Hello,
> 
>  
> 
> i have a few questions re koma (book).
> 
> The chapter title I am writing is supposed to be in capitals
> 
> 18. THE BIOLOGICAL CLOCK
> 
> The sections
> 
> 1. OVERVIEW
> 
> the subsections
> 
> 2.1 Spectrum of Rhythms (in italics)
> 
> the Acknowledgements without number
> 
> ACKNOWLEDGEMENTS
> 
> and the references
> 
> REFERENCES
> 
> all of it centered except the subsections. which start left
> 
>  
> 
> I bought the new edition of the Koma book, but could not find the
> adequate place. Could somebody tell me?
> 
>  
> 
> Wolfgang
> 




Re: Koma(book) question

2013-12-13 Thread Steve Litt
On Fri, 13 Dec 2013 13:49:20 +0100
Wolfgang Engelmann engelm...@uni-tuebingen.de wrote:

 Hello,
 
 i have a few questions re koma (book).
 The chapter title I am writing is supposed to be in capitals 
 18. THE BIOLOGICAL CLOCK
 The sections
 1. OVERVIEW
 the subsections
 2.1 Spectrum of Rhythms (in italics)
 the Acknowledgements without number
 ACKNOWLEDGEMENTS
 and the references
 REFERENCES
 all of it centered except the subsections. which start left
 
 I bought the new edition of the Koma book, but could not find the
 adequate place. Could somebody tell me?
 
 Wolfgang

When I have requirements like that, which can't be done without a great
deal of LaTeX-fu, I often preprocess the file through an AWK script
into a new (intermediate) file (this one with the proper chapters
capitalized), and then compile the intermediate file.

SteveT

Steve Litt*  http://www.troubleshooters.com/
Troubleshooting Training  *  Human Performance


Re: Koma(book) question

2013-12-13 Thread Steve Litt
On Fri, 13 Dec 2013 13:49:20 +0100
Wolfgang Engelmann engelm...@uni-tuebingen.de wrote:

 Hello,
 
 i have a few questions re koma (book).
 The chapter title I am writing is supposed to be in capitals 
 18. THE BIOLOGICAL CLOCK
 The sections
 1. OVERVIEW
 the subsections
 2.1 Spectrum of Rhythms (in italics)
 the Acknowledgements without number
 ACKNOWLEDGEMENTS
 and the references
 REFERENCES
 all of it centered except the subsections. which start left
 
 I bought the new edition of the Koma book, but could not find the
 adequate place. Could somebody tell me?
 
 Wolfgang

When I have requirements like that, which can't be done without a great
deal of LaTeX-fu, I often preprocess the file through an AWK script
into a new (intermediate) file (this one with the proper chapters
capitalized), and then compile the intermediate file.

SteveT

Steve Litt*  http://www.troubleshooters.com/
Troubleshooting Training  *  Human Performance


Re: Koma(book) question

2013-12-13 Thread Steve Litt
On Fri, 13 Dec 2013 13:49:20 +0100
Wolfgang Engelmann  wrote:

> Hello,
> 
> i have a few questions re koma (book).
> The chapter title I am writing is supposed to be in capitals 
> 18. THE BIOLOGICAL CLOCK
> The sections
> 1. OVERVIEW
> the subsections
> 2.1 Spectrum of Rhythms (in italics)
> the Acknowledgements without number
> ACKNOWLEDGEMENTS
> and the references
> REFERENCES
> all of it centered except the subsections. which start left
> 
> I bought the new edition of the Koma book, but could not find the
> adequate place. Could somebody tell me?
> 
> Wolfgang

When I have requirements like that, which can't be done without a great
deal of LaTeX-fu, I often preprocess the file through an AWK script
into a new (intermediate) file (this one with the proper chapters
capitalized), and then compile the intermediate file.

SteveT

Steve Litt*  http://www.troubleshooters.com/
Troubleshooting Training  *  Human Performance