
나는 긴 장 제목이 포함된 박사 학위 논문을 작성 중입니다.
순차 P 시스템의 보편성의 가장자리에
표준 제목 페이지 스타일을 사용하면 제목의 제목이 오버플로되어 보기 흉해 보입니다.
\documentclass[a4paper,12pt,oneside,openany,pagenumber=footcenter]{book}
\pagestyle{headings}
\begin{document}
\chapter{On the edge of universality of sequential P systems}
\section{Active membranes}
\pagebreak
second page
\end{document}
예를 들어 긴 제목을 다음 줄로 넘기는 등의 다른 옵션도 있습니다. 다소 나아졌지만 여전히 읽을 수 없습니다.
\documentclass[a4paper,12pt,oneside,openany,pagenumber=footcenter]{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\begin{document}
\chapter{On the edge of universality of sequential P systems}
\section{Active membranes}
\pagebreak
second page
\end{document}
또 다른 옵션은 제목에 장 제목의 짧은 버전을 표시하는 것입니다.
\documentclass[a4paper,12pt,oneside,openany,pagenumber=footcenter]{book}
\begin{document}
\chapter[On the edge of universality of seq\dots]{On the edge of universality of sequential P systems}
\section{Active membranes}
\pagebreak
second page
\end{document}
제 생각에는 무엇이든 가능합니다. 하지만 이러한 긴 제목에 대한 모범 사례는 무엇입니까? 우리 부서에는 이에 대한 규칙이 없습니다. 심지어 이것조차도수동그것에 대한 언급이 없습니다. 나는 일반적인 추천을 요청하고 있습니다: 당신은 무엇을 하시겠습니까?
답변1
제목을 자르는 것이 아니라 완전한 문구로 축약하겠습니다. \ldots
또한 기본 표시를 대문자가 아닌 것으로 변경합니다. 기본 설정에서는 장 제목이 더 짧아지도록 의도되었으며 각 페이지에는 장 또는 섹션 제목만 있고 둘 다는 없습니다.
\documentclass[a4paper,12pt,oneside]{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\setlength\headheight{15pt}
\makeatletter
\renewcommand\chaptermark[1]{%
\markboth{\if@mainmatter
\@chapapp\ \thechapter. \ %
\fi #1}{}}
\renewcommand\sectionmark[1]{%
\markright {%
\thesection. \ %
#1}}
\makeatother
\begin{document}
\chapter[edge of universality]
{On the edge of universality of sequential P systems}
\section{Active membranes}
\pagebreak
second page
\end{document}