恢复回忆录中的默认页面布局

恢复回忆录中的默认页面布局

我设法使用以下命令更改了论文卷首的页面布局(左右边距相等):

\setlrmargins{*}{*}{1}
\checkandfixthelayout

现在我想恢复回忆录的默认页面布局。我该怎么做?

答案1

这不是针对具体问题的答案,但下面是如何使用的方法frontespizio,给出模板http://www2.units.it/dott/files/EFFronte.doc

\documentclass[a4paper]{memoir}
\usepackage[norules,noadvisor]{frontespizio}

\begin{document}

\begin{frontespizio}
\begin{Preambolo*}
\usepackage{newtxtext}
\renewcommand{\frontinstitutionfont}{\fontsize{22}{24}\bfseries}
\renewcommand{\frontdivisionfont}{\fontsize{18}{24}\bfseries}
\renewcommand{\fronttitlefont}{\fontsize{20}{24}\bfseries}
\renewcommand{\frontsubtitlefont}{\fontsize{10}{12}\selectfont}
\renewcommand{\frontnamesfont}{\fontsize{14}{18}\selectfont}
\renewcommand{\frontfootfont}{\fontsize{14}{18}\bfseries}
\end{Preambolo*}
\Logo[3cm]{trieste}
\Istituzione{UNIVERSIT\`A DEGLI STUDI DI TRIESTE}
\Divisione{XLII CICLO DEL DOTTORATO DI RICERCA IN}
\Scuola{PENNUTISTICA}
\Titolo{TITOLO DELLA TESI}
\Sottotitolo{Settore scientifico-disciplinare: PEN/99}

\NCandidato{}
\Candidato{%
  \begin{minipage}{\textwidth}\centering
  \begin{tabular}{@{}l@{}}
  \normalfont DOTTORANDO \\
  \bfseries Alessandro Cuttin\\[2ex]
  \normalfont COORDINATORE \\
  \bfseries PROF. Frederick Frankenstein \\[2ex]
  \normalfont SUPERVISORE DI TESI \\
  \bfseries PROF. The Monster
  \end{tabular}
  \end{minipage}}
\Piede{ANNO ACCADEMICO 2017/2018}
\end{frontespizio}

\end{document}

在此处输入图片描述

答案2

在 latex 中,可以使用和进行临时更改或临时更改一些变量,\begingroup\endgroup在这两个命令之间进行更改。

我是通过手机回答的,稍后会改进答案。

在你的情况下,\begingroup布局改变之前和\endgroup你想要撤消的时候,可以工作,但要小心重新定义可能在这个组内定义的任何变量,而不需要\global或等效的定义

答案3

在文档中途改变文档布局的一般方法是:

\documentclass[...]{report}% or book or article or ...
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\twocolumn% if onecolumn document
% make your layout changes here
\onecolumn% if onecolumn document
\lipsum[1]
\end{document}

这是因为 LaTeX 在切换一列和两列时会重新计算布局参数(我不知道这个multicolumn包)。我多年前从 Donald Arseneau 那里得到了这个。

memoir班级为例:

\documentclass[,...]{memoir}
\usepackage{lipsum}
% change the layout if you wish
\checkandfixthelayout
\begin{document}
\lipsum[1]
\twocolumn
\setlrmarginsandblock{3in}{*}{1}% increase the margins & reduce text width
\checkandfixthelayout
\onecolumn
\lipsum[1]
\end{document}

memoir要获取原始布局的详细信息,您可以简单地处理:

\documentclass{memoir}
\checkandfixthelayout
\begin{document}
\end{document}

它将在终端上打印所有值。

相关内容