早上好,
在我的代码中,我希望表格后的新行以与文本其他部分相同的边距开始,而无需重新输入。为了更清楚起见,这是代码:
\documentclass[a4paper,12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{arydshln}
\usepackage{mathtools}
\usepackage{amsmath,bm}
\usepackage{mathptmx}
\usepackage{booktabs}
\usepackage{amsmath}
\usepackage{times}
\providecommand{\keywords}[1]{\textbf{\textit{Keywords:}} #1}
\providecommand{\jel}[1]{\textbf{\textit{JEL Classification:}} #1}
\def\permille{\ensuremath{{}^\text{o}\mkern-5mu/\mkern-3mu_\text{oo}}}
\usepackage{hyperref}
\newcommand{\footremember}[2]{%
\footnote{#2}
\newcounter{#1}
\setcounter{#1}{\value{footnote}}%
}
\newcommand{\footrecall}[1]{%
\footnotemark[\value{#1}]%
}
\usepackage{multirow}
\usepackage{multicol} % used for the two-column index
\usepackage{longtable}
\usepackage{graphicx}
\usepackage{floatrow}
\floatsetup[table]{capposition=top}
\floatsetup[figure]{capposition=top}
\usepackage[titletoc]{appendix}
\usepackage{csquotes}
\usepackage[
useprefix,
backend=biber,
isbn = false,
doi = false,
language=auto,
style=apa,
sorting=nyt,
uniquename=false,
natbib]{biblatex}
\addbibresource{bibliosim.bib}
\begin{document}
\begin{table}[H]
\centering
\begin{tabular}{rrrrrrrr}
\multicolumn{8}{c}{Coefficient of Variation}\\
\hline
& Min. & Q1 & Median & Mean & Q3 & Max. \\
\hline
Direct & 7.81 & 12.23 & 16.03 & 18.93 & 22.62 & 74.22 \\
GAMLSS & 3.32 & 6.86 & 8.03 & 8.97 &9.56 & 27.10 \\
\hline
\end{tabular}
\caption{Summary of coefficient of variation}
\label{result}
\end{table}
To obtain reliable estimates \dots
\end{document}
通过这种方式,我得到了表格,但是下一行代码(“获取等”)将从重新输入开始,就像如果我将一行代码留空一样,就像在等式之后所做的那样。
我怎样才能删除这个重新条目?
感谢您!