Изменить размер шрифта заголовка раздела в документе, не нарушая оглавление и заголовки

Изменить размер шрифта заголовка раздела в документе, не нарушая оглавление и заголовки

Я знаю, что это технически неправильно, и мне даже не следует пытаться это делать... Тем не менее, у меня есть документ, в котором размеры заголовков разделов настроены как Largeи он отлично работает вездекромедля одного раздела, который слишком длинный. Я хотел бы изменить размер шрифтатолько этого заголовка разделачтобы он выглядел красивее (даже если это не соответствует размеру других заголовков разделов)

Единственный способ, которым мне удалось изменить размерлокальнобыло, делая

\section{\large{My very long section title}}

Однако это портит заголовки и оглавление, поскольку там также меняется шрифт.

Я пробовал использовать minipageили заключать команду section в \begin{small}--\end{small}, но поскольку размер заголовка раздела определяется где-то в другом месте, ничего не меняется...

Вот пример:

\documentclass[12pt,twoside,a4paper]{report}

\usepackage{lipsum}
\usepackage{fancyhdr}   % To change header and footers
    \pagestyle{fancy}       % Turn on the style
    \fancyhf{}              % Clears everything in the header and footer
    \fancyfoot[CE,CO]{\thepage}         %Page number centered in all pages
    \fancyhead[LE]{\slshape\nouppercase{\leftmark}}     %Chapter title in the outer margin of even pages
    \fancyhead[RO]{\slshape\nouppercase{\rightmark}}    %Section title in the outer margin of odd pages

\begin{document}

\tableofcontents

\chapter{My chapter}
\lipsum[3-6]

\section{This title is great}
\lipsum[3-10]

\section{This title is  veryvery veryveryvery increadibly and mindblowingly very very superlong}
The title is 3 lines long! It would look much better if I could just very slightly reduce the font size, so that it fits in two lines.

\bigskip

\lipsum[3-2]

\section{Some other nice title}
\lipsum[3-8]

\section{\large{This title is  veryvery veryveryvery increadibly and mindblowingly very very superlong}}
Great! it is now 2 lines... but the header is huge! and look at the table of contents!!

\bigskip

\lipsum[3-2]

\end{document}

что приводит к чему-то вроде: Оглавление

Слишком большой

Неправильный заголовок/TOC

решение1

Вы можете использовать следующее:\chapter[short title in header & TOC]{long title in document}

\documentclass[12pt,twoside,a4paper]{report}

\usepackage{lipsum}
\usepackage{fancyhdr}   % To change header and footers
    \pagestyle{fancy}       % Turn on the style
    \fancyhf{}              % Clears everything in the header and footer
    \fancyfoot[CE,CO]{\thepage}         %Page number centered in all pages
    \fancyhead[LE]{\slshape\nouppercase{\leftmark}}     %Chapter title in the outer margin of even pages
    \fancyhead[RO]{\slshape\nouppercase{\rightmark}}    %Section title in the outer margin of odd pages

\begin{document}

\tableofcontents

\chapter{My chapter}
\lipsum[3-6]

\section{This title is great}
\lipsum[3-10]

\section[This title is a bit shorter]{This title is  veryvery veryveryvery increadibly and mindblowingly very very superlong}
The title is 3 lines long! It would look much better if I could just very slightly reduce the font size, so that it fits in two lines.

\bigskip

\lipsum[3-2]

\section{Some other nice title}
\lipsum[3-8]

\chapter[This title is short]{\large This title is  veryvery veryveryvery increadibly and mindblowingly very very superlong}

Great! it is now 2 lines... but the header is huge! and look at the table of contents!!

\bigskip

\lipsum[3-2]

\end{document}

введите описание изображения здесь

введите описание изображения здесь

решение2

Используйте \titleformat*команду titlesecизнутри группы, например так:

\documentclass[12pt,twoside,a4paper]{report}

\usepackage{lipsum}
\usepackage{titlesec} 
\usepackage{fancyhdr} % To change header and footers
    \pagestyle{fancy} % Turn on the style
    \fancyhf{} % Clears everything in the header and footer
    \fancyfoot[CE,CO]{\thepage} %Page number centered in all pages
    \fancyhead[LE]{\slshape\nouppercase{\leftmark}} %Chapter title in the outer margin of even pages
    \fancyhead[RO]{\slshape\nouppercase{\rightmark}} %Section title in the outer margin of odd pages

\begin{document}

\tableofcontents

\chapter{My chapter}
\lipsum[3-6]

\section{This title is great}
\lipsum[3-10]

\section{This title is veryvery veryveryvery increadibly and mindblowingly very very superlong}
The title is 3 lines long! It would look much better if I could just very slightly reduce the font size, so that it fits in two lines.

\bigskip

\lipsum[3-2]

\section{Some other nice title}
\lipsum[3-8]

{
\titleformat*{\section}{\Large\bfseries\itshape}
\section{This title is veryvery veryveryvery increadibly and mindblowingly very very superlong}}
Great! it is now 2 lines... but the header is huge! and look at the table of contents!!

\bigskip

\lipsum[3-2]

\section{Some other nice title}

\end{document} 

введите описание изображения здесь

введите описание изображения здесь

Связанный контент