1. 按
默认情况下是页码出现在页面的右上方的,本文介绍如何将页码放在下方中间位置。
2. 核心代码
将核心代码放在文档开头\documentclass部分的下面
\usepackage{fancyhdr}
\pagestyle{fancy}
\lfoot{}%这条语句可以让页码出现在下方
3. 完整项目
\documentclass[hyperref, UTF8]{ctexart}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lfoot{}%这条语句可以让页码出现在下方
\begin{document}
\begin{table}
% table caption is above the table
\caption{\bfseries变量及意义}
% For LaTeX tables use
\centering
\label{tab:1} % Give a unique label
\begin{tabular}{c|c}
\hline
\bfseries{变量} & \bfseries{意义} \\
\hline
\bfseries{${{s}^{2}}$} &剩余方差\\
\bfseries$Q$ &误差平方和 \\
\bfseries${{\delta }^{2}}$ &天然气总量回归方程的位置参数 \\
\bfseries${{\beta }_{0}}$ &天然气总量回归方程的回归系数 \\
\bfseries${{\beta }_{1}}$ &天然气总量回归方程的回归系数 \\
\bfseries${{\beta }_{2}}$ &天然气总量回归方程的回归系数 \\
\bfseries${{\hat{\beta }}_{j}}$ &天然气总量回归方程的最小二乘法的估计值 \\
\hline
\end{tabular}
\end{table}
\end{document}