von Seccerony » Mi 13. Sep 2017, 22:51
Hey TeXniker,
angehängt ist ein Bild der gewünschten Schriftgrößen und Abstände für nummerierte und nichtnummerierte Überschriften (chapter, sections etc.).
Ich habe Schwierigkeiten bei der Umsetzung in KOMA-script.
Gewünscht:
Chapternumber: 18 pt
Chaptername: 20 pt
Sectionname: 14 pt
Subsectionname: 14 pt kursiv
Abstand von Chapternumber zu Text/Sectionname: 160 pt
Bisheriger Stand:
\documentclass[paper=a4,fontsize=12pt,numbers=noenddot]{scrbook}
\usepackage[margin=2.5cm]{geometry}
\renewcommand\normalsize{\@setfontsize\normalsize{12}{14.4}}
\renewcommand\large{\@setfontsize\large{14}{16.8}}
\renewcommand\LARGE{\@setfontsize\LARGE{18}{21.6}}
\renewcommand\huge{\@setfontsize\huge{20}{24}}
\newcommand{\chapnumsize}{\LARGE}
\newcommand{\chapnumstyle}{\normalfont\mdseries}
\newcommand{\chapsize}{\huge}
\newcommand{\chapstyle}{\mdseries}
\newcommand{\secsize}{\large}
\newcommand{\secstyle}{\mdseries}
\addtokomafont{part}{\mdseries}
\addtokomafont{partnumber}{\mdseries}
\addtokomafont{chapter}{\mdseries}
\addtokomafont{section}{\mdseries}
\setkomafont{disposition}{\normalcolor\bfseries}
\ifnumbered{chapter}{then...}{else...}
\ifunnumbered{chapter}{then...}{else...}
\begin{document}
\section*{Acknowledgements}
This project consumed huge amount of work, research and dedication. Still, implementation would not have been possible if we did not have a support of many individuals and organizations.
\chapter{Chapter Heading}
\section{Section Heading}
This is the same text as before, as this project consumed huge amount of work, research and dedication. Still, implementation would not have been possible if we did not have a support of many individuals and organizations.
This is the same text as before, as this project consumed huge amount of work, research and dedication. Still, implementation would not have been possible if we did not have a support of many individuals and organizations.
\end{document}
- Dateianhänge
-

- Vorlage.jpg (903.36 KiB) 4285 mal betrachtet
Hey TeXniker,
angehängt ist ein Bild der gewünschten Schriftgrößen und Abstände für nummerierte und nichtnummerierte Überschriften (chapter, sections etc.).
Ich habe Schwierigkeiten bei der Umsetzung in KOMA-script. :-x
Gewünscht:
Chapternumber: 18 pt
Chaptername: 20 pt
Sectionname: 14 pt
Subsectionname: 14 pt kursiv
Abstand von Chapternumber zu Text/Sectionname: 160 pt
Bisheriger Stand:
[code]
\documentclass[paper=a4,fontsize=12pt,numbers=noenddot]{scrbook}
\usepackage[margin=2.5cm]{geometry}
\renewcommand\normalsize{\@setfontsize\normalsize{12}{14.4}}
\renewcommand\large{\@setfontsize\large{14}{16.8}}
\renewcommand\LARGE{\@setfontsize\LARGE{18}{21.6}}
\renewcommand\huge{\@setfontsize\huge{20}{24}}
\newcommand{\chapnumsize}{\LARGE}
\newcommand{\chapnumstyle}{\normalfont\mdseries}
\newcommand{\chapsize}{\huge}
\newcommand{\chapstyle}{\mdseries}
\newcommand{\secsize}{\large}
\newcommand{\secstyle}{\mdseries}
\addtokomafont{part}{\mdseries}
\addtokomafont{partnumber}{\mdseries}
\addtokomafont{chapter}{\mdseries}
\addtokomafont{section}{\mdseries}
\setkomafont{disposition}{\normalcolor\bfseries}
\ifnumbered{chapter}{then...}{else...}
\ifunnumbered{chapter}{then...}{else...}
\begin{document}
\section*{Acknowledgements}
This project consumed huge amount of work, research and dedication. Still, implementation would not have been possible if we did not have a support of many individuals and organizations.
\chapter{Chapter Heading}
\section{Section Heading}
This is the same text as before, as this project consumed huge amount of work, research and dedication. Still, implementation would not have been possible if we did not have a support of many individuals and organizations.
This is the same text as before, as this project consumed huge amount of work, research and dedication. Still, implementation would not have been possible if we did not have a support of many individuals and organizations.
\end{document}
[/code]