Hi,
i am trying to modify the template to use it in a One Side Format.
But i´m getting in trouble with the Headers. Now every Headers Looks like if it would be a right page. That means the actual subsection is showed at the right edge.
But i want that the actual section is showed on the left side like it is on left pages in the "standard book layout".
My problem is that i can not find code section where the left and right side Headers are defined.
Can anyone help me with this problem or even give me a hint where i have to modify the Design definition?
btiegel
Theses, Books, Title pages ⇒ Change to One Side Format
Change to One Side Format
Hi,
I'm not sure what you mean. Have you changed '
Cheers,
Vel
I'm not sure what you mean. Have you changed '
twoside
' on line 30 of main.tex
to 'oneside
'? The subsections are aligned left in the document so I don't know what you mean by them being at the right edge. Could you please be more precise with what you've done and what the problem is?Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Change to One Side Format
hi,
first of all thanks for your reaction. I´m trying to be more accurate this time:
Yes i changed that to oneside.
I am not talking about the headings in the text Everything ist all right with these ones.
My Problem is related to the header section at the top of every page where you can see the actual chapter and the page number.
In the Original-twoside Version the actual section ist displayed in the left edge of every left/odd page. On every right/even page the actual subsection ist displayed in the right edge of the header section.
If i change the argument to get a onepage design the header looks like on an even page on every page.
My problem is that i wanna see section in the left edge like on an even page in the two page design.
Do you know understand what is actually my problem?
btiegel
first of all thanks for your reaction. I´m trying to be more accurate this time:
Yes i changed that to oneside.
I am not talking about the headings in the text Everything ist all right with these ones.
My Problem is related to the header section at the top of every page where you can see the actual chapter and the page number.
In the Original-twoside Version the actual section ist displayed in the left edge of every left/odd page. On every right/even page the actual subsection ist displayed in the right edge of the header section.
If i change the argument to get a onepage design the header looks like on an even page on every page.
My problem is that i wanna see section in the left edge like on an even page in the two page design.
Do you know understand what is actually my problem?
btiegel
Last edited by templateuser on Sat Mar 21, 2015 10:43 am, edited 1 time in total.
Re: Change to One Side Format
Ah! I see what you mean now. The reason the template does this is that when you set oneside that means you will be printing the thesis and binding it so that only the right page has content while the left is always blank. Hence, the headers always display the header and page number on the right side of the page since this is closer to the outside of the thesis. If you change it so that the headers display as with the twoside layout then that would look quite strange since every other page would have the header near the spine of the thesis rather than towards the outside.
Are you sure that you want to do this? You'll want to look in scrrepr.cls if you want to do this, you can find it online. Look for specification of headers under the twoside/oneside options.
Are you sure that you want to do this? You'll want to look in scrrepr.cls if you want to do this, you can find it online. Look for specification of headers under the twoside/oneside options.
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Change to One Side Format
ok that is true. And thanks for your explanations.
Do you have a hint for my me how i can manage that the secition and not the sub-section ist displayed in the header?
The best would be if there where any possibility to show both in the followong way:
4. Example Section
4.3 Example Sub-Section
------------------------------------------------------------------
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
btiegel
Do you have a hint for my me how i can manage that the secition and not the sub-section ist displayed in the header?
The best would be if there where any possibility to show both in the followong way:
4. Example Section
4.3 Example Sub-Section
------------------------------------------------------------------
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
btiegel
Change to One Side Format
To add a second line to the header simply go to line 338 in classicthesis.sty which says:
and change that to:
This will print just the current subsection number on another line under the default section line. You'll have to play with the spacing and figure out how to get the current subsection text in there yourself.
Good luck!
Code: Select all
\rohead{\mbox{\hfil{\headmark}\rlap{\small\kern2em\thepage}}}
Code: Select all
\rohead{\mbox{\hfil{\headmark}\rlap{\small\kern2em\thepage}}\\ \thesubsection}
Good luck!
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com