我是 LaTeX 新手。我正在使用西拉特克斯在Linux Mint Tara编译。更新版本TeX 直播已安装。
以下是我的疑问:
我已经使用
fontspec
包来更改字体,但是有没有不用附加包就可以做到这一点的方法?如何设置边距
memoir
?我用过\setulmarginsandblock{2cm}{*}{1}
,但我认为它包括页眉。如何在没有
fncyhdr
软件包的情况下制作页眉、页脚?文档memoir
要求使用\makeevenhead
&\makeoddhead
,但我的书有oneside
。如何编辑我的页眉/页脚?我需要的标题是多行;第一行只是居中对齐的纯文本,后面跟着
\makeheadrule
;章节号包括节号;
\leftmark
和\rightmark
都在左侧,/
中间。
一个是,\textbf{}
一个不是。两者都用斜体表示。页眉右侧包含
\textbf{Page | }
页码,包括章节号和章节页码[2-18/35] 表示如下,
2=当前章节号;
18=当前页码;
三十五=当前章节总页数。页脚 位于
\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}
抱歉,问题这么长...如果您读到最后,谢谢。