Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

设置论文中某一页纸张方向为横向 #420

Closed
caijun opened this issue Jun 3, 2019 · 16 comments
Closed

设置论文中某一页纸张方向为横向 #420

caijun opened this issue Jun 3, 2019 · 16 comments

Comments

@caijun
Copy link

caijun commented Jun 3, 2019

编译环境

编译的系统:macOS 10.14
TeX 发行版:TeX Live 2019 / MacTeX 2019 / MikTeX 2.9.6753
模板版本:v5.5.2
模板类型:doctor

描述问题

我有一个表格非常宽,表格单独所在的这一页纸张方向设置为横向才能放下,该如何设置呢?

@zepinglee
Copy link
Contributor

用小一点的字体?

@caijun
Copy link
Author

caijun commented Jun 3, 2019

字体得小很多才能放下。能像word里设置特定的一页的纸张方向吗?然后就可以保持表格的格式不变。

@zepinglee
Copy link
Contributor

while 放不下:
    尝试更小的字号

@xueruini
Copy link
Contributor

xueruini commented Jun 3, 2019

可以 google 一下 latex landscape table

@caijun
Copy link
Author

caijun commented Jun 3, 2019

嗯,我用rotating包的sidewaystable环境将表格旋转放置在页面中,表格显示没有问题。但生成的PDF这一页不是横向的,我需要旋转一下才能比较方便看。然后是页眉和页码都是按照竖向页面显示的,没有按照横向页面显示。

image

@mohuangrui
Copy link

无意中看到这个问题,刚好不久前处理过一个类似的问题,在此提供一个思路:

以下排版的样例可见 横排图表

  1. 如果需要横排页面但无需横排页眉页脚,只需
\RequirePackage{pdflscape}% landscape environment

并使用

\begin{landscape}% 横排页环境
\begin{table}%
    \caption{这是一个横排样表。}
    \label{tab:rotatedsamplelscape}
    \centering
    \begin{tabular}{lcccccccc}
        \hline
        \textbf{Type} & Avg1 & Avg2 & Avg3 & Avg4 & Avg5 & Avg6 & Avg7 & Avg8 \\
        \hline
        BS & 79.24 & 84.33 & 77.75 & 80.50 & 51.90 & 49.20 & 9.10 & 100.00 \\
        BC & 77.83 & 77.30 & 75.81 & 77.92 & 55.80 & 46.30 & 12.30 & 100.00 \\
        \hline
    \end{tabular}
\end{table}
\end{landscape}
  1. 如果需要横排页面且横排页眉页脚,这个处理则比较麻烦,而且需确认是否确实为学位论文撰写规范所要求,否则,打印版肯定会很奇怪。

首先,在 preample 中加入:

\RequirePackage{fancyhdr}% fancy headers and footers
\RequirePackage{pdflscape}% landscape environment
\RequirePackage[absolute]{textpos}% rotated page number
\fancypagestyle{lscape}{% landscape layout style
    \fancyhf{}% clear fields
    \fancyhead[C]{%
        \begin{textblock}{1.0}[0.5,0.5](0.08,0.5)%
            \rotatebox{90}{%
                \footnotesize \ifnumodd{\value{page}}{\CTEXthechapter\enskip\leftmark}{\@title}%
            }%
        \end{textblock}%
        \begin{textblock}{1.0}[0.5,0.5](0.08,0.5)%
            \rotatebox{90}{%
                \rule[-14pt]{\textwidth}{0.8pt}%
            }%
        \end{textblock}%
    }%
    \fancyfoot[C]{%
        \begin{textblock}{1.0}[0.5,0.5](0.92,0.5)
            \rotatebox{90}{%
                \footnotesize \ifnumodd{\value{page}}{\hspace*{\fill}\thepage}{\thepage\hspace*{\fill}}%
            }%
        \end{textblock}%
    }%
    \setlength{\TPHorizModule}{\paperwidth}%
    \setlength{\TPVertModule}{\paperheight}%
    \renewcommand{\headrulewidth}{0pt}%
    \renewcommand{\footrulewidth}{0pt}%
}

然后使用

\begin{landscape}% 横排页环境
\pagestyle{lscape}% 横排页眉页脚样式
\begin{table}%
    \caption{这是一个横排样表。}
    \label{tab:rotatedsamplelscape}
    \centering
    \begin{tabular}{lcccccccc}
        \hline
        \textbf{Type} & Avg1 & Avg2 & Avg3 & Avg4 & Avg5 & Avg6 & Avg7 & Avg8 \\
        \hline
        BS & 79.24 & 84.33 & 77.75 & 80.50 & 51.90 & 49.20 & 9.10 & 100.00 \\
        BC & 77.83 & 77.30 & 75.81 & 77.92 & 55.80 & 46.30 & 12.30 & 100.00 \\
        \hline
    \end{tabular}
\end{table}
\end{landscape}

@caijun
Copy link
Author

caijun commented Jul 3, 2019

@mohuangrui 非常感谢你提供的解决方法,基本达到我的目的,但是在使用表格脚注时遇到新的问题。thuthesis通过“将表格放在小页中,而且最好将表格的宽度设置为小页的宽度”的方法添加脚注

\begin{landscape} % 横排页环境
\pagestyle{lscape}% 横排页眉页脚样式
\begin{table}
    \centering
      \caption[不同方法估计的2012/13—2017/18监测年度日本47个都道府县季节性流感流行特征参数]{不同方法估计的2012/13—2017/18监测年度日本47个都道府县季节性流感流行特征参数}
      \label{tab:summary_epi_params}
      \begin{minipage}[t]{0.99\textwidth}
      \begin{tabular}{ccccccccc}
      \toprule
      参数                                                                   & 方法    & 2012/2013 & 2013/2014    & 2014/2015 & 2015/2016    & 2016/2017 & 2017/2018  & 平均值  \\ \midrule
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}开始时间$^a$\\ (周)\end{tabular}} & 经验阈值法 & 16.4      & 17.0         & 13.9      & 19.3         & 12.2      & 12.6       & 15.2 \\
                                                                           & 分段回归法 & 18.9      & 19.2         & 15.8      & 20.6         & 17.9      & 17.1       & 18.2 \\
                                                                           & 最大曲率法 & 16.0      & 17.0         & 13.2      & 18.5         & 12.7      & 12.4       & 15.0 \\
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}结束时间\\ (周)\end{tabular}}  & 经验阈值法 & 38.7      & 37.7         & 36.5      & 37.6         & 37.7      & 34.3       & 37.1 \\
                                                                           & 分段回归法 & 29.4      & 34.6         & 26.5      & 34.4         & 30.1      & 29.4       & 30.7 \\
                                                                           & 最大曲率法 & 34.3      & 37.5         & 32.4      & 38.1         & 36.3      & 34.1       & 35.5 \\
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}持续时间\\ (周)\end{tabular}}  & 经验阈值法 & 23.0      & 21.8         & 23.5      & 19.1         & 26.3      & 22.6       & 22.7 \\
                                                                           & 分段回归法 & 11.5      & 16.3         & 11.7      & 14.8         & 13.3      & 13.3       & 13.5 \\
                                                                           & 最大曲率法 & 19.3      & 21.6         & 20.2      & 20.6         & 24.6      & 22.7       & 21.5 \\
      \multirow{3}{*}{开始强度$^b$}                                               & 经验阈值法 & 1         & 1            & 1         & 1            & 1         & 1          & 1    \\
                                                                           & 分段回归法 & 4.25      & 3.90         & 5.08      & 3.30         & 7.95      & 9.87       & 5.72 \\
                                                                           & 最大曲率法 & 0.70      & 0.87         & 0.50      & 0.61         & 1.13      & 0.84       & 0.78 \\
      \multirow{3}{*}{结束强度}                                                & 经验阈值法 & 1         & 1            & 1         & 1            & 1         & 1          & 1    \\
                                                                           & 分段回归法 & 7.39      & 4.04         & 8.74      & 5.13         & 8.05      & 8.06       & 6.90 \\
                                                                           & 最大曲率法 & 1.99      & 1.07         & 1.96      & 0.66         & 1.67      & 1.01       & 1.40 \\
      \hl{优势亚型}$^c$                                                                &       & A(H3)     & A(H1N1)pdm09 & A(H3)     & A(H1N1)pdm09 & A(H3)     & B/Yamagata & -   \\ \bottomrule
      \end{tabular}\\[2pt]
       \footnotesize 注:$^a$流行开始和结束时间的周数是以每年的第35周作为一个流感监测年度的第1周计数。\\
       $^b$开始强度和结束强度分别表示流感流行开始和结束时流感活动强度(C/S/W)。\\
       $^c$每个流感监测年度的流感病毒优势亚型信息来自文献\cite{MHLW:2013,MHLW:2014,MHLW:2015,MHLW:2016,MHLW:2017,MHLW:2018}
      \end{minipage}
\end{table}
\end{landscape}

排版效果:

image

若不使用小页,表格位置理想,但是脚注位置不美观。

\begin{landscape} % 横排页环境
\pagestyle{lscape}% 横排页眉页脚样式
\begin{table}
    \centering
      \caption[不同方法估计的2012/13—2017/18监测年度日本47个都道府县季节性流感流行特征参数]{不同方法估计的2012/13—2017/18监测年度日本47个都道府县季节性流感流行特征参数}
      \label{tab:summary_epi_params}
      %\begin{minipage}[t]{0.99\textwidth}
      \begin{tabular}{ccccccccc}
      \toprule
      参数                                                                   & 方法    & 2012/2013 & 2013/2014    & 2014/2015 & 2015/2016    & 2016/2017 & 2017/2018  & 平均值  \\ \midrule
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}开始时间$^a$\\ (周)\end{tabular}} & 经验阈值法 & 16.4      & 17.0         & 13.9      & 19.3         & 12.2      & 12.6       & 15.2 \\
                                                                           & 分段回归法 & 18.9      & 19.2         & 15.8      & 20.6         & 17.9      & 17.1       & 18.2 \\
                                                                           & 最大曲率法 & 16.0      & 17.0         & 13.2      & 18.5         & 12.7      & 12.4       & 15.0 \\
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}结束时间\\ (周)\end{tabular}}  & 经验阈值法 & 38.7      & 37.7         & 36.5      & 37.6         & 37.7      & 34.3       & 37.1 \\
                                                                           & 分段回归法 & 29.4      & 34.6         & 26.5      & 34.4         & 30.1      & 29.4       & 30.7 \\
                                                                           & 最大曲率法 & 34.3      & 37.5         & 32.4      & 38.1         & 36.3      & 34.1       & 35.5 \\
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}持续时间\\ (周)\end{tabular}}  & 经验阈值法 & 23.0      & 21.8         & 23.5      & 19.1         & 26.3      & 22.6       & 22.7 \\
                                                                           & 分段回归法 & 11.5      & 16.3         & 11.7      & 14.8         & 13.3      & 13.3       & 13.5 \\
                                                                           & 最大曲率法 & 19.3      & 21.6         & 20.2      & 20.6         & 24.6      & 22.7       & 21.5 \\
      \multirow{3}{*}{开始强度$^b$}                                               & 经验阈值法 & 1         & 1            & 1         & 1            & 1         & 1          & 1    \\
                                                                           & 分段回归法 & 4.25      & 3.90         & 5.08      & 3.30         & 7.95      & 9.87       & 5.72 \\
                                                                           & 最大曲率法 & 0.70      & 0.87         & 0.50      & 0.61         & 1.13      & 0.84       & 0.78 \\
      \multirow{3}{*}{结束强度}                                                & 经验阈值法 & 1         & 1            & 1         & 1            & 1         & 1          & 1    \\
                                                                           & 分段回归法 & 7.39      & 4.04         & 8.74      & 5.13         & 8.05      & 8.06       & 6.90 \\
                                                                           & 最大曲率法 & 1.99      & 1.07         & 1.96      & 0.66         & 1.67      & 1.01       & 1.40 \\
      \hl{优势亚型}$^c$                                                                &       & A(H3)     & A(H1N1)pdm09 & A(H3)     & A(H1N1)pdm09 & A(H3)     & B/Yamagata & -   \\ \bottomrule
      \end{tabular}\\[2pt]
       \footnotesize 注:$^a$流行开始和结束时间的周数是以每年的第35周作为一个流感监测年度的第1周计数。\\
       $^b$开始强度和结束强度分别表示流感流行开始和结束时流感活动强度(C/S/W)。\\
       $^c$每个流感监测年度的流感病毒优势亚型信息来自文献\cite{MHLW:2013,MHLW:2014,MHLW:2015,MHLW:2016,MHLW:2017,MHLW:2018}
      %\end{minipage}
\end{table}
\end{landscape}

排版效果:

image

另外页眉重复了章标题。

@mohuangrui
Copy link

  1. “页眉重复了章标题”,去掉 \CTEXthechapter\enskip 即可,修改后的置于 preample 的代码为:
\RequirePackage{fancyhdr}% fancy headers and footers
\RequirePackage{pdflscape}% landscape environment
\RequirePackage[absolute]{textpos}% rotated page number
\fancypagestyle{lscape}{% landscape layout style
    \fancyhf{}% clear fields
    \fancyhead[C]{%
        \begin{textblock}{1.0}[0.5,0.5](0.08,0.5)%
            \rotatebox{90}{%
                \footnotesize \ifnumodd{\value{page}}{\leftmark}{\@title}%
            }%
        \end{textblock}%
        \begin{textblock}{1.0}[0.5,0.5](0.08,0.5)%
            \rotatebox{90}{%
                \rule[-14pt]{\textwidth}{0.8pt}%
            }%
        \end{textblock}%
    }%
    \fancyfoot[C]{%
        \begin{textblock}{1.0}[0.5,0.5](0.92,0.5)
            \rotatebox{90}{%
                \footnotesize \ifnumodd{\value{page}}{\hspace*{\fill}\thepage}{\thepage\hspace*{\fill}}%
            }%
        \end{textblock}%
    }%
    \setlength{\TPHorizModule}{\paperwidth}%
    \setlength{\TPVertModule}{\paperheight}%
    \renewcommand{\headrulewidth}{0pt}%
    \renewcommand{\footrulewidth}{0pt}%
}
  1. 似乎在 landscape 环境中 \minipage 无法正确处理 \textwidth\textheight。修正方法为使用 \paperheight (注:landscape 环境内 widthheight 需要置换),即修改后的代码为:
\begin{landscape} % 横排页环境
\pagestyle{lscape}% 横排页眉页脚样式
\begin{table}
    \centering
      \caption[不同方法估计的2012/13—2017/18监测年度日本47个都道府县季节性流感流行特征参数]{不同方法估计的2012/13—2017/18监测年度日本47个都道府县季节性流感流行特征参数}
      \label{tab:summary_epi_params}
      \begin{minipage}[t]{0.75\paperheight}
      \begin{tabular}{ccccccccc}
      \toprule
      参数                                                                   & 方法    & 2012/2013 & 2013/2014    & 2014/2015 & 2015/2016    & 2016/2017 & 2017/2018  & 平均值  \\ \midrule
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}开始时间$^a$\\ (周)\end{tabular}} & 经验阈值法 & 16.4      & 17.0         & 13.9      & 19.3         & 12.2      & 12.6       & 15.2 \\
                                                                           & 分段回归法 & 18.9      & 19.2         & 15.8      & 20.6         & 17.9      & 17.1       & 18.2 \\
                                                                           & 最大曲率法 & 16.0      & 17.0         & 13.2      & 18.5         & 12.7      & 12.4       & 15.0 \\
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}结束时间\\ (周)\end{tabular}}  & 经验阈值法 & 38.7      & 37.7         & 36.5      & 37.6         & 37.7      & 34.3       & 37.1 \\
                                                                           & 分段回归法 & 29.4      & 34.6         & 26.5      & 34.4         & 30.1      & 29.4       & 30.7 \\
                                                                           & 最大曲率法 & 34.3      & 37.5         & 32.4      & 38.1         & 36.3      & 34.1       & 35.5 \\
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}持续时间\\ (周)\end{tabular}}  & 经验阈值法 & 23.0      & 21.8         & 23.5      & 19.1         & 26.3      & 22.6       & 22.7 \\
                                                                           & 分段回归法 & 11.5      & 16.3         & 11.7      & 14.8         & 13.3      & 13.3       & 13.5 \\
                                                                           & 最大曲率法 & 19.3      & 21.6         & 20.2      & 20.6         & 24.6      & 22.7       & 21.5 \\
      \multirow{3}{*}{开始强度$^b$}                                               & 经验阈值法 & 1         & 1            & 1         & 1            & 1         & 1          & 1    \\
                                                                           & 分段回归法 & 4.25      & 3.90         & 5.08      & 3.30         & 7.95      & 9.87       & 5.72 \\
                                                                           & 最大曲率法 & 0.70      & 0.87         & 0.50      & 0.61         & 1.13      & 0.84       & 0.78 \\
      \multirow{3}{*}{结束强度}                                                & 经验阈值法 & 1         & 1            & 1         & 1            & 1         & 1          & 1    \\
                                                                           & 分段回归法 & 7.39      & 4.04         & 8.74      & 5.13         & 8.05      & 8.06       & 6.90 \\
                                                                           & 最大曲率法 & 1.99      & 1.07         & 1.96      & 0.66         & 1.67      & 1.01       & 1.40 \\
      \hl{优势亚型}$^c$                                                                &       & A(H3)     & A(H1N1)pdm09 & A(H3)     & A(H1N1)pdm09 & A(H3)     & B/Yamagata & -   \\ \bottomrule
      \end{tabular}\\[2pt]
       \footnotesize 注:$^a$流行开始和结束时间的周数是以每年的第35周作为一个流感监测年度的第1周计数。\\
       $^b$开始强度和结束强度分别表示流感流行开始和结束时流感活动强度(C/S/W)。\\
       $^c$每个流感监测年度的流感病毒优势亚型信息来自文献\cite{MHLW:2013,MHLW:2014,MHLW:2015,MHLW:2016,MHLW:2017,MHLW:2018}
      \end{minipage}
\end{table}
\end{landscape}

取决于表的横向长度,有时需适当修正 0.75\paperheight 中的 0.75 以使表格居中。

@caijun
Copy link
Author

caijun commented Jul 3, 2019

非常感谢,版本效果非常赞👍

@caijun
Copy link
Author

caijun commented Jul 3, 2019

是否将

\footnotesize \ifnumodd{\value{page}}{\leftmark}{\@title}

改为

\footnotesize \leftmark

比较好?目前表格出现在偶数页时,我这边页眉显示为“title”,还是有更合适的处理方式?

@mohuangrui
Copy link

忘记提醒了,如果是将代码直接加在 preample 的话,需要置于 \makeatletter ... \makeatother 环境中,即:

\RequirePackage{fancyhdr}% fancy headers and footers
\RequirePackage{pdflscape}% landscape environment
\RequirePackage[absolute]{textpos}% rotated page number
\makeatletter
\fancypagestyle{lscape}{% landscape layout style
    \fancyhf{}% clear fields
    \fancyhead[C]{%
        \begin{textblock}{1.0}[0.5,0.5](0.08,0.5)%
            \rotatebox{90}{%
                \footnotesize \ifnumodd{\value{page}}{\leftmark}{\@title}%
            }%
        \end{textblock}%
        \begin{textblock}{1.0}[0.5,0.5](0.08,0.5)%
            \rotatebox{90}{%
                \rule[-14pt]{\textwidth}{0.8pt}%
            }%
        \end{textblock}%
    }%
    \fancyfoot[C]{%
        \begin{textblock}{1.0}[0.5,0.5](0.92,0.5)
            \rotatebox{90}{%
                \footnotesize \ifnumodd{\value{page}}{\hspace*{\fill}\thepage}{\thepage\hspace*{\fill}}%
            }%
        \end{textblock}%
    }%
    \setlength{\TPHorizModule}{\paperwidth}%
    \setlength{\TPVertModule}{\paperheight}%
    \renewcommand{\headrulewidth}{0pt}%
    \renewcommand{\footrulewidth}{0pt}%
}
\makeatother

这样 \@title 就会转化为你的论文标题,而不是 title 字符串。也就是奇数页页眉为章标题,偶数页为论文标题。取决于thu的格式要求,你可以进行进一步的设定。

如果是把代码丢进 thuthesis.sty ,则不需要置于 \makeatletter ... \makeatother 环境中。

@mohuangrui
Copy link

发现 thuthesis 没有设定 \@title 的默认值,那你如果想要奇数页页眉为章标题,偶数页为论文标题,需要使用 \thu@ctitle 替换 \@title

@caijun
Copy link
Author

caijun commented Jul 3, 2019

好的,谢谢你的解释

@LXLHXL123
Copy link

  1. “页眉重复了章标题”,去掉 \CTEXthechapter\enskip 即可,修改后的置于 preample 的代码为:
\RequirePackage{fancyhdr}% fancy headers and footers
\RequirePackage{pdflscape}% landscape environment
\RequirePackage[absolute]{textpos}% rotated page number
\fancypagestyle{lscape}{% landscape layout style
    \fancyhf{}% clear fields
    \fancyhead[C]{%
        \begin{textblock}{1.0}[0.5,0.5](0.08,0.5)%
            \rotatebox{90}{%
                \footnotesize \ifnumodd{\value{page}}{\leftmark}{\@title}%
            }%
        \end{textblock}%
        \begin{textblock}{1.0}[0.5,0.5](0.08,0.5)%
            \rotatebox{90}{%
                \rule[-14pt]{\textwidth}{0.8pt}%
            }%
        \end{textblock}%
    }%
    \fancyfoot[C]{%
        \begin{textblock}{1.0}[0.5,0.5](0.92,0.5)
            \rotatebox{90}{%
                \footnotesize \ifnumodd{\value{page}}{\hspace*{\fill}\thepage}{\thepage\hspace*{\fill}}%
            }%
        \end{textblock}%
    }%
    \setlength{\TPHorizModule}{\paperwidth}%
    \setlength{\TPVertModule}{\paperheight}%
    \renewcommand{\headrulewidth}{0pt}%
    \renewcommand{\footrulewidth}{0pt}%
}
  1. 似乎在 landscape 环境中 \minipage 无法正确处理 \textwidth\textheight。修正方法为使用 \paperheight (注:landscape 环境内 widthheight 需要置换),即修改后的代码为:
\begin{landscape} % 横排页环境
\pagestyle{lscape}% 横排页眉页脚样式
\begin{table}
    \centering
      \caption[不同方法估计的2012/13—2017/18监测年度日本47个都道府县季节性流感流行特征参数]{不同方法估计的2012/13—2017/18监测年度日本47个都道府县季节性流感流行特征参数}
      \label{tab:summary_epi_params}
      \begin{minipage}[t]{0.75\paperheight}
      \begin{tabular}{ccccccccc}
      \toprule
      参数                                                                   & 方法    & 2012/2013 & 2013/2014    & 2014/2015 & 2015/2016    & 2016/2017 & 2017/2018  & 平均值  \\ \midrule
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}开始时间$^a$\\ (周)\end{tabular}} & 经验阈值法 & 16.4      & 17.0         & 13.9      & 19.3         & 12.2      & 12.6       & 15.2 \\
                                                                           & 分段回归法 & 18.9      & 19.2         & 15.8      & 20.6         & 17.9      & 17.1       & 18.2 \\
                                                                           & 最大曲率法 & 16.0      & 17.0         & 13.2      & 18.5         & 12.7      & 12.4       & 15.0 \\
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}结束时间\\ (周)\end{tabular}}  & 经验阈值法 & 38.7      & 37.7         & 36.5      & 37.6         & 37.7      & 34.3       & 37.1 \\
                                                                           & 分段回归法 & 29.4      & 34.6         & 26.5      & 34.4         & 30.1      & 29.4       & 30.7 \\
                                                                           & 最大曲率法 & 34.3      & 37.5         & 32.4      & 38.1         & 36.3      & 34.1       & 35.5 \\
      \multirow{3}{*}{\begin{tabular}[c]{@{}c@{}}持续时间\\ (周)\end{tabular}}  & 经验阈值法 & 23.0      & 21.8         & 23.5      & 19.1         & 26.3      & 22.6       & 22.7 \\
                                                                           & 分段回归法 & 11.5      & 16.3         & 11.7      & 14.8         & 13.3      & 13.3       & 13.5 \\
                                                                           & 最大曲率法 & 19.3      & 21.6         & 20.2      & 20.6         & 24.6      & 22.7       & 21.5 \\
      \multirow{3}{*}{开始强度$^b$}                                               & 经验阈值法 & 1         & 1            & 1         & 1            & 1         & 1          & 1    \\
                                                                           & 分段回归法 & 4.25      & 3.90         & 5.08      & 3.30         & 7.95      & 9.87       & 5.72 \\
                                                                           & 最大曲率法 & 0.70      & 0.87         & 0.50      & 0.61         & 1.13      & 0.84       & 0.78 \\
      \multirow{3}{*}{结束强度}                                                & 经验阈值法 & 1         & 1            & 1         & 1            & 1         & 1          & 1    \\
                                                                           & 分段回归法 & 7.39      & 4.04         & 8.74      & 5.13         & 8.05      & 8.06       & 6.90 \\
                                                                           & 最大曲率法 & 1.99      & 1.07         & 1.96      & 0.66         & 1.67      & 1.01       & 1.40 \\
      \hl{优势亚型}$^c$                                                                &       & A(H3)     & A(H1N1)pdm09 & A(H3)     & A(H1N1)pdm09 & A(H3)     & B/Yamagata & -   \\ \bottomrule
      \end{tabular}\\[2pt]
       \footnotesize 注:$^a$流行开始和结束时间的周数是以每年的第35周作为一个流感监测年度的第1周计数。\\
       $^b$开始强度和结束强度分别表示流感流行开始和结束时流感活动强度(C/S/W)。\\
       $^c$每个流感监测年度的流感病毒优势亚型信息来自文献\cite{MHLW:2013,MHLW:2014,MHLW:2015,MHLW:2016,MHLW:2017,MHLW:2018}
      \end{minipage}
\end{table}
\end{landscape}

取决于表的横向长度,有时需适当修正 0.75\paperheight 中的 0.75 以使表格居中。

你好,请问(注:landscape 环境内 width 和 height 需要置换)这里需要怎么置换吗,我调整 0.75\paperheight 中的 0.75 ,它始终不变化。

@Cyc1e183
Copy link

我加上这个包\RequirePackage{fancyhdr}的话,原有模板中页眉的线就不见了

@Harry-Chen
Copy link
Member

我加上这个包\RequirePackage{fancyhdr}的话,原有模板中页眉的线就不见了

thuthesis 本身就使用了 fancyhdr,再次导入应当是没有效果的。此外,不建议旋转页眉页脚的方向,写作指南对此尚且没有明确的要求。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants