我正在写一篇论文,在缩写和符号列表中我有众所周知的和特定的缩写。众所周知的缩写有罗马页码,但另一个有正常编号。它也应该有罗马编号。
这就是我的编码方式。
\chapter*{List of abbreviations and symbols}
\markboth{}{} % no headers
\textbf{Well-Known Abbreviations}
\begin{termlist}
blah blah blah
\end{termlist}
\newpage
\textbf{Specific Abbreviations For This Thesis}
\begin{termlist}
blah blah blah
\end{termlist}
我有同样的问题,有和没有\newpage
谁能帮我解决这个问题?
答案1
该命令\pagenumbering{roman}
应该执行预期的操作。
\documentclass[12pt]{report}
\usepackage{termlist}
\begin{document}
\chapter{The main thesis chapters}
blah blah blah
\chapter*{List of abbreviations and symbols}
\pagenumbering{roman} % restart page numbers: i, ii, ...
\markboth{}{} % no headers
\textbf{Well-Known Abbreviations}
\begin{termlist}
\item blah blah blah
\end{termlist}
\newpage
\textbf{Specific Abbreviations For This Thesis}
\begin{termlist}
\item blah blah blah
\end{termlist}
\end{document}