Theses, Books, Title pages ⇒ Moving the large grey chapter numbers' positions
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Moving the large grey chapter numbers' positions
As I've adjusted my margins, I'd like to be able to reposition them accordingly.
Thank you in advance!
Catherine
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Moving the large grey chapter numbers' positions
The line you're interested in is line 373 of
classicthesis.sty
:Code: Select all
{\relax}{\mbox{}\oldmarginpar{\vspace*{-3\baselineskip}\color{halfgray}\chapterNumber\thechapter}}{0pt}
\vspace*{-3\baselineskip}
, to change how far right the number is, add a \hspace{-20pt}
just before \chapterNumber\thechapter
with a positive value for moving it right and negative value for moving it left.Cheers,
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Moving the large grey chapter numbers' positions
The large grey numbers in the appendix feature as 'A' and 'B'. I'd like to change these letters as I prefer to call the appendix 'Supplementary Information', therefore I'd like the top right large grey letter to be 'SI'.
How do I change the large letter from 'A' to 'SI'?
Thanks!
cjl
Moving the large grey chapter numbers' positions
Just place the following right after
\appendix
in your main.tex
file: Code: Select all
\renewcommand{\thechapter}{SI}
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Moving the large grey chapter numbers' positions
Related to the first post, having adjusted the positions of the chapter numbers as you kindly instructed, the same command does not seem to adjust the position of the large grey 'SI' chapter number. Is there a separate command line that determines the position of the appendix chapter numbers?
cjl
Moving the large grey chapter numbers' positions
I just opened up the template and changed the A to SI using my last reply and then added the
\hspace{-20pt}
to line 373 of classicthesis.sty
as per my first reply in this thread like so:Code: Select all
{\relax}{\mbox{}\oldmarginpar{\vspace*{-3\baselineskip}\color{halfgray}%\hspace{-20pt}\chapterNumber\thechapter}}{0pt}
hspace
in the same place? Note that if you're using the 'linedheaders
' option when calling the classicthesis
style from classicthesis-config.tex
you will need to add the negative horizontal on line 370 instead. Cheers,
Vel