我正在尝试将段落、小段落和表格置于报告第二页的中央。
我尝试做的是:
\paragraph{\begin{center}Document Information\end{center}}
但是当我尝试编译它时,出现以下错误:
我无法理解这其中的原因。以下是我完整的 latex 代码,我尝试将段落、子段落和表格居中。
\documentclass[a4paper,12pt]{report}
\title{Test Report}
\author{Suhail}
\usepackage{fancyhdr}
\usepackage{lastpage}
\usepackage[landscape, margin=1in]{geometry}
\usepackage[yyyymmdd,hhmmss]{datetime}
\pagestyle{fancy}
\fancyhf{}
\lhead{AA, BB (CC, DD)}
\rhead{For Restricted Circulation Only}
\lfoot{MFF-TTG/RT}
\rfoot{\thepage\ of \pageref{LastPage}}
\cfoot{}
\begin{document}
\maketitle
\paragraph{\begin{center}Document Information\end{center}}
\subparagraph{\begin{center}Document information is given in the table below\end{center}}
\subparagraph{
\begin{center}
\begin{tabular}{|c| c| c|}
\hline
\textbf{S.No} & \textbf{Item} & \textbf{Information} \\
\hline
1 & Document ID & VFC-RRT/ER \\
\hline
2 & Document Generated At & \today \\
\hline
3 & Document Generated By & Me \\
\hline
4 & AFG Protocol ID & CV/1 \\
\hline
\end{tabular}
\end{center}
}
\end{document}
居中对齐内容的正确方法是什么?我想将第 2 页上的所有内容居中对齐(水平和垂直)。我该怎么做?