文件标题

文件标题

我尝试使用如图所示的标题来设置我的工作。在一页中,左标题希望看到部分,而在下一页中,右标题希望看到子部分。我该怎么做?我正在处理文档类“文章”在此处输入图片描述

答案1

根据您的需要定制此代码:

\documentclass{book}
\usepackage[paperwidth=17cm,paperheight=24cm, inner=2cm,outer=1.5cm,top=2cm,bottom=1.5cm,headsep=3pt]{geometry}

\usepackage{lipsum}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[italian]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}

\usepackage{emptypage}
\usepackage{lmodern,microtype}


\usepackage{fancyhdr}
\pagestyle{fancy}
%

\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{}
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[LO]{\bfseries\nouppercase{\rightmark}}
\fancyhead[RE]{\bfseries\nouppercase{\leftmark}}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
%\addtolength{\headheight}{0.5pt}





\begin{document}
    
    \frontmatter
    \tableofcontents
    \mainmatter
    \chapter{Preface}
    
    \lipsum
    

    
    \chapter{Si comincia}
    
    \lipsum
    \section{Sezione 1}
    \lipsum[1-10]
    
    
    \section{Sezione 2}
    \lipsum[5-10]
    \chapter{Si continua...}
    \section{Sezione 3}
    \lipsum[1-10]

    
    \section{Sezione 4}
    \lipsum[1-10]
    \section{Sezione 5}
    \lipsum[5-10]
    \lipsum[1-25]
        \backmatter

    \chapter{Appendix Something}
    \pagestyle{plain}
    Testo
    \lipsum[1-10]
    \chapter{Appendix di controllo}
    \pagestyle{plain}
    \lipsum[10-15]
    Testo
    \lipsum[5-10]
    
\end{document}

输出:

在此处输入图片描述

相关内容