我是乳膠新手。我在用著XeLaTeX在Linux 薄荷塔拉編譯。更新版本TeX 直播已安裝。
以下是我的問題:
我已經使用
fontspec
套件來更改字體,但是有沒有辦法在沒有額外套件的情況下做到這一點?如何賺取利潤
memoir
?我使用過\setulmarginsandblock{2cm}{*}{1}
,但它包括我認為的標題。不封裝如何製作頁首、頁尾
fncyhdr
?的文檔memoir
要求使用\makeevenhead
&\makeoddhead
但我的書有oneside
.如何編輯我的頁首/頁尾?我需要的標題是多行的;第一行只是居中對齊的純文本,後跟
\makeheadrule
;章號包括節號;
\leftmark
都\rightmark
在左側,位於/
它們之間。
一個是\textbf{}
另一個則不是。兩者都是斜體。頁首右側包含
\textbf{Page | }
後跟頁碼,其中包括 ChapterNumber 和逐章頁碼[2-18/35] 表示如下,
2=目前章節號;
18=目前頁碼;
35=目前章節總頁數。頁尾就 在
\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
?最後,如何使 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}
抱歉問了這麼長的問題...謝謝您讀到最後。