首先,我要感谢这里的每个人,他们非常乐于助人,这个网站在帮助新人爱上乳胶方面做得非常出色。我还有一个问题。我必须将一些表格置于横向模式,因为它们太大,在正常的纵向模式下看起来不好看。我也想在该页面上显示页眉和页码。有人可以指导我如何做到这一点吗?使用简单的代码。我实际上害怕破坏我当前的文档,所以我打算将其制作成单独的文件,然后稍后使用 PDF 工具将其添加到我的原始文档中。所以我可能需要为这些页面添加自定义编号。我在这里提供我从用户那里使用的代码,用于我的页眉和编号,你们能告诉我如何在此处添加自定义编号吗,例如,如果横向表格在第 23 页。此外,我还添加了一张图片,以展示我希望我的页面在横向表格中看起来如何。非常感谢
这是我想放置自定义数字的代码
\usepackage{fancyhdr}
\usepackage[margin=0.75in,head=2cm,top=1.5cm,bottom=2.5cm,includehead]{geometry}
\usepackage{lastpage}
\usepackage{graphicx}
\renewcommand{\headrule}{}% to remove the line
\lhead{\includegraphics[width=6cm]{lol.png}}% use your logo
\rhead{%
\begin{minipage}[b]{5cm}
\flushright
\today\\
IND/Q-85/15 \\
Page \thepage{} of \pageref{LastPage}
\vspace{6mm}
\end{minipage}}
\cfoot{}
如果是第 23 页的话,我想我需要将 '\thepage{}' 改为正常的 23,但我不确定 =/。抱歉,我问的是一个非常简单的问题。
答案1
看看下面的例子是否能帮助你:
\documentclass{book}
\usepackage{fancyhdr}
\usepackage[margin=0.75in,head=2cm,top=1.5cm,bottom=2.5cm,includehead]{geometry}
\usepackage{lastpage}
\usepackage{graphicx}
\renewcommand{\headrule}{}% to remove the line
\lhead{\includegraphics[width=6cm,height=2cm]{example-image.png}}% use your logo
\rhead{%
\begin{minipage}[b]{5cm}
\flushright
\today\\
IND/Q-85/15 \\
Page \thepage{} of \pageref{LastPage}
\vspace{6mm}
\end{minipage}}
\cfoot{}
\usepackage{rotating}
\usepackage{afterpage}
\usepackage{lipsum}
\begin{document}
\chapter{Forst chapter}
\pagestyle{fancy}
\lipsum[1]
\section{First section}
\lipsum[2-4]
\afterpage{\clearpage}
\begin{sidewaystable}
\caption{my biggggggggggggggggggggg table}
\begin{tabular}{|c|c|c|}
\hline
this table is to wide to be fit in text width
& this table is to wide to be fit in text width
& this table is to wide to be fit in text width\\
\hline
\end{tabular}
\end{sidewaystable}
\lipsum[5-13]
\section{Second section}
Second section follows immediately after end of the first section!
As you can see, the first page, where is the begin of chapter,
there is no heading as on the other pages. This is defined
by \verb+\chapter+ style (as it is default defined in document class "book".
\lipsum[12-13]
\end{document}
对于“横向”表,我使用包rotating
及其环境sidewaystable
。包afterpage
用于在之后的新页面上移动文本sidewaystable
。
升级:在上面的 MWE 中,我添加了文档划分(章节和两节),目的是展示文档按节的划分方式。