如何在「回憶錄」中製作自訂頁首/頁腳、邊註並使用自訂字體?

如何在「回憶錄」中製作自訂頁首/頁腳、邊註並使用自訂字體?

我是乳膠新手。我在用著XeLaTeXLinux 薄荷塔拉編譯。更新版本TeX 直播已安裝。

這就是我想做的: LaTeX_Layout_Goal

以下是我的問題:

  1. 我已經使用fontspec套件來更改字體,但是有沒有辦法在沒有額外套件的情況下做到這一點?

  2. 如何賺取利潤memoir?我使用過\setulmarginsandblock{2cm}{*}{1},但它包括我認為的標題。

  3. 不封裝如何製作頁首、頁尾fncyhdr?的文檔memoir要求使用\makeevenhead&\makeoddhead但我的書有oneside.如何編輯我的頁首/頁尾?

  4. 我需要的標題是多行的;第一行只是居中對齊的純文本,後跟\makeheadrule;

  5. 章號包括節號;
    \leftmark\rightmark在左側,位於/它們之間。
    一個是\textbf{}另一個則不是。兩者都是斜體。

  6. 頁首右側包含\textbf{Page | }後跟頁碼,其中包括 ChapterNumber 和逐章頁碼[2-18/35] 表示如下,
    2=目前章節號;
    18=目前頁碼;
    35=目前章節總頁數

  7. 頁尾就 在
    \FAS{"F0E0} \textbf{Mail: }\textit{[email protected]}\hfill\FAB{"F16D} \textbf{Mail: }\textit{[email protected]}\hfill\FAS{"F57D} \textbf{Website: }\textit{www.isro.gov.in}
    兩條腳規 \makefootrule我猜?如何將頁首/頁尾改為 Aqua?\aqt

  8. 最後,如何使 SideMarginNotes 與段落頂部對齊?誰的寬度是5公分?我\setmarginnotes{17pt}{5cm}{0}memoir文檔中嘗試過,但它不起作用。如何在其中添加帶有標題和說明文字的文字、圖形或表格?

到目前為止,這是我的程式碼...

    \documentclass[a4paper,12pt,oneside,showframe]{memoir}

    \setlrmarginsandblock{2.5cm}{2cm}{*}
    \setulmarginsandblock{2cm}{*}{1}
    \checkandfixthelayout


    \chapterstyle{bianchi}

    \usepackage{blindtext}

    \usepackage{xcolor}
        \makeatletter
            \newcommand{\globalcolor}[1]{%
                \color{#1}\global\let\default@color\current@color
            }
        \makeatother
        \AtBeginDocument{\globalcolor{white}}

        \definecolor{sectioncolour}{RGB}{0,255,255}
        \definecolor{chaptercolour}{RGB}{0,255,255}
        \definecolor{subsectioncolour}{RGB}{0,255,255}

        \setsecheadstyle{\Large\bfseries\color{sectioncolour}}
        \setsubsecheadstyle{\large\bfseries\color{subsectioncolour}}

        \renewcommand{\chapnamefont}{\normalfont\large\scshape\raggedleft\color{chaptercolour}}
        \renewcommand{\chapnumfont}{\Huge\bfseries\color{chaptercolour}}
        \renewcommand{\chaptitlefont}{\normalfont\Huge\bfseries\sffamily\raggedleft\color{chaptercolour}}

    \usepackage[pages=all]{background}
        \backgroundsetup{
            scale=1,color=black,opacity=0.10,angle=0,contents={
                \includegraphics[height=15cm]{draft.png}
            }
        }

        %\setmainfont{Ubuntu}
        %\setmonofont{Ubuntu Mono}
        %\newfontface{\fasfont}{Font Awesome 5 Free Solid}
        %\NewDocumentCommand{\FAS}{m}{{\normalfont\fasfont\symbol{#1}}}

        %\newfontface{\farfont}{Font Awesome 5 Free Regular}
        %\NewDocumentCommand{\FAR}{m}{{\normalfont\farfont\symbol{#1}}}

        %\newfontface{\fabfont}{Font Awesome 5 Brands Regular}
        %\NewDocumentCommand{\FAB}{m}{{\normalfont\fabfont\symbol{#1}}}


    \begin{document}
    \BgThispage
    \pagecolor{darkgray}

    \Blinddocument

    \Blinddocument

    \end{document}

這是我的程式碼給我的: 取得佈局 頁尾文字

抱歉問了這麼長的問題...謝謝您讀到最後。

相關內容