보고서 문서 클래스의 제목

보고서 문서 클래스의 제목

가능한 중복:
책 형식의 헤더

나는 보고서 문서 클래스로 작업하고 있습니다. 내 서문에는 이런 내용이 있습니다.

\documentclass[11pt,a4paper,oneside]{report}
\pagestyle{headings}

다음과 같이 소문자 제목(각 단어의 첫 글자 제외)을 얻고 싶습니다.

제1장 문헌고찰

내가 지금까지 가지고 있는 것은 다음과 같습니다.

제1장 문헌 검토

답변1

% arara: pdflatex: {synctex: yes}
\documentclass[11pt,a4paper,oneside]{report}
\usepackage{lipsum}
\makeatletter
\def\ps@headings{%
    \let\@oddfoot\@empty
    \def\@oddhead{{\slshape\rightmark}\hfil\thepage}%
    \let\@mkboth\markboth
    \def\chaptermark##1{%
      \markright {{%                                    %%% original \MakeUppercase
        \ifnum \c@secnumdepth >\m@ne
            \@chapapp\ \thechapter. \ %
        \fi
        ##1}}}}
\makeatother
\pagestyle{headings}

\begin{document}
\chapter{First chapter}
\lipsum[1-10]
\end{document}

관련 정보