缩写列表标题

缩写列表标题

List of abbreviation我是这个网站的新手。我对、List of symbols和有疑问。我对、 或或任何其他自动处理这些事情的包References不感兴趣。我只需要制作这两个列表。例如:bibtexbiblatex

\documentclass[a4paper, 12pt, twoside, openright, ngerman, american,]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage{import}
\usepackage{fancyhdr}
\newcommand{\symlabel}[1]{\makebox[4cm][l]{\textbf{#1}\ \dotfill}}
\newenvironment{symbols}{\begin{list}{}{\renewcommand{\makelabel}{\symlabel} \setlength{\labelwidth}{4cm}\setlength{\leftmargin}{\labelwidth+\labelsep} \setlength{\itemsep}{0pt}}}{\end{list}}
\fancypagestyle{symb}{\fancyhf{}\renewcommand{\headrulewidth}{0pt}\fancyhead[L]{ \normalfont\sffamily\Huge\bfseries \hspace{-0.8cm} List of Symbols}} %to set the name of the list of symb
\pagestyle{fancy}
\begin{document}
\thispagestyle{symb}
\pagenumbering{Roman}
\setcounter{page}{5} 
\setlength{\voffset}{3.5cm}
\setlength{\headsep}{1.5cm}
\begin{symbols}
\item[$\lfloor$ $\rfloor$] Approximate the number to the closest lower integer number.
\end{symbols}
\end{document}

其中有两个问题:1. 页码不出现在第一页 2. 页面实际上比页面的长度要长 3. 第一页之后的页面标题偏移量相同。我想更改代码,以便仅适用voffset于第一页。页码出现在包括第一页在内的所有页面上(我希望从我决定的页码开始,页码为罗马数字)。包括第一页在内的所有页面都按规则结束,以显示页脚。

答案1

我不确定想要的结果是什么。但我觉得对章节标题之类的内容使用页面样式是错误的。

\documentclass[a4paper, 12pt, twoside, openright, ngerman, american,]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\pagestyle{fancy}

\usepackage{showframe}% to show the page layout
\usepackage{blindtext}% dummy text
\begin{document}
\pagenumbering{Roman}
\Blindtext
\addchap*{\hspace{-.8cm} List of Symbols}
\setcounter{page}{5} 
\begin{description}
\item[$\lfloor$ $\rfloor$] Approximate the number to the closest lower integer number.
\end{description}
\Blindtext
\chapter{A chapter}
\Blindtext[4]
\end{document}

symbols请注意,您的代码中未定义环境。因此我改用了description

![在此处输入图片描述


但也许您也想更改正常章节标题的格式:

\documentclass[a4paper, 12pt, twoside, openright, ngerman, american,]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\pagestyle{fancy}

\makeatletter
\renewcommand\chapterlinesformat[3]{%
  \@hangfrom{\hspace{-.8cm} #2}{#3}%
}
\makeatother

\usepackage{showframe}% to show the page layout
\usepackage{blindtext}% dummy text
\begin{document}
\pagenumbering{Roman}
\Blindtext
\addchap*{List of Symbols}
\setcounter{page}{5} 
\begin{description}
\item[$\lfloor$ $\rfloor$] Approximate the number to the closest lower integer number.
\end{description}
\Blindtext
\chapter{A chapter}
\Blindtext[4]
\end{document}

在此处输入图片描述

相关内容