扩展 A3 页面的标题

扩展 A3 页面的标题

我正在用 A4 格式撰写论文,有时我需要使用 A3 页面来处理更大的图像。我设法在 A4 文档中创建了一个 A3 页面,并将标题扩展到右边距。但是,标题的文本对齐方式仍然设置为 A4 文档。有人知道如何将标题调整为图像大小(在 A3 图像中)吗?这是我提交前需要纠正的最后一点 =)

这里有我正在做的事情......(--编辑--以获得完整的文档。我正在使用序言,所以我复制了我正在使用的所有软件包,以便按照我的方式进行设置......)

    \documentclass[a4paper,12pt, oneside]{book}

\usepackage{float}
\usepackage{afterpage}
\usepackage[usenames,dvipsnames]{color}


\usepackage{etex}
\reserveinserts{18}
\usepackage{morefloats}
\usepackage{lscape}



\usepackage[portuges,brazilian,english]{babel}
\usepackage[T1]{fontenc}


\usepackage[T1]{fontenc}


\usepackage{textcomp}



\usepackage{setspace}
\usepackage[authoryear]{natbib}
\usepackage{graphicx}
\usepackage{float}
\usepackage{fancyhdr}
\usepackage{eso-pic}
\usepackage{color}
\usepackage{fixltx2e}  %gives \textsubscript
\usepackage{pdfpages}
\usepackage{sidecap}


\renewcommand{\sfdefault}{phv}


\usepackage{microtype}

\usepackage{multirow}

\usepackage{indentfirst}


\usepackage{array}


\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{3}

%Sets margins...
\usepackage[cm]{fullpage}
\usepackage[top=1.5cm, bottom=4cm, left=4cm, right=2cm]{geometry}

%Customises figure captions...
\usepackage[small,justification=justified,format=plain,labelsep=space,indention=0cm,margin={0cm,0cm},labelfont={rm,bf},up,textfont={rm,it}]{caption}
\usepackage{wrapfig}
\usepackage{sidecap}
\usepackage{rotating}

\usepackage{booktabs}


\usepackage{pdfpages}

\newcommand{\degree}{\ensuremath{^\circ}}

%customises header...
\usepackage{fancyhdr}
\setlength{\headheight}{15pt}
\setlength{\headsep}{30pt}
 \pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{#1}{}}
 \fancyhf{}
\fancyhead[LE,RO]{\textrm{\normalsize{\thepage}}}
\fancyhead[RE]{\textrm{\normalsize{{{\leftmark}}}}}
\fancyhead[LO]{\textrm{\large{{{\rightmark}}}}}






\begin{document}

\clearpage{
\pdfpagewidth=2\pdfpagewidth
\fancyheadoffset[R]{20cm} 

\begin{figure}[H]
    \centering
    \includegraphics[height=1.3\textwidth]{LATEX/C8/IMAGES/SCENARIOB}
    \caption[Results of Burial scenario B  - maturity window]{ResultsB - Burial scenario B contemplating transient heat flow (B-transient) and rifting heat flow (B-rifting). B-transient-I is contemplating a geothermal gradient of 30$^\circ$C/km for the overburden calculation; B-transient-II is contemplating a geothermal gradient of 20$^\circ$C/km for the overburden calculation; B-transient-III is contemplating a geothermal gradient of 15$^\circ$C/km for the overburden calculation. B-rifting is contemplating a $\beta$=1.3. }
    \label{SCENARIO B}
\end{figure}
\clearpage
}

\pdfpagewidth=1\pdfpagewidth



\end{document}

它看起来像这样......(在这种特殊情况下,图像没有覆盖整个页面,但这只是因为图像的大小,这不是错误):

A3 图像,标题与 A4 页面对齐

相关内容