问:如何在脚注和底线表之间插入空格?

问:如何在脚注和底线表之间插入空格?

在这种情况下,脚注“\caption*{*Porcentaje de Tweets respecto a la muestra.\La relación tweet:hashtag suele ser de tipo 1:n.\Muestra $=$ 2.507.027 tweets}”太靠近表格主体了。我的目的是将它与底线规则标题与托普鲁并将其应用于所有表格。这是我的 MWE:

\documentclass{thesis}
%document hosted here, see sample ch.1: https://es.sharelatex.com/project/58455964c0ba0b593dc919de

\begin{document}



\begin{table}
\centering

\caption{Principales hashtags del movimiento 15M}
\label{tab:hashtags15M}
\begin{tabular}{@{}lrr@{}}\toprule[1.5pt]
\bf Hashtag & \bf Tweets & \bf Ratio*  \\\midrule
 acampadasol & 646.853 & 25,80\\
 spanishrevolution & 605.764 & 24,16\\
 15m & 572.047 & 22.82\\
 nolesvotes & 302.745 & 12,08\\
 democraciarealya & 242.903 & 9,69\\
 nonosvamos & 103.889 & 4,14 \\
 notenemosmiedo & 84.614 & 3,38\\
 yeswecamp & 56.938 & 2,27\\
 19j & 56.622 & 2.26 \\
 globalcamp & 37.024 & 1,48\\
 bcnsinmiedo & 37.024 & 1,48\\
 globalcamp & 35.877 & 1,43\\
 estoesreflexion & 31.220 & 1,25\\
 15mani & 28.891 & 1,15

\bottomrule[1.25pt]
\end {tabular}\par
\caption*{*Porcentaje de Tweets respecto a la muestra. \\
La relación tweet:hashtag suele ser de tipo 1:n.\\Muestra $=$ 2.507.027 tweets}
\end{table}
\end{document}

在此处输入图片描述

答案1

您正在寻找这样的东西吗?

\documentclass{article}
\usepackage{booktabs}
\begin{document}

\begin{table}
  \centering
  \caption{Principales hashtags del movimiento 15M}
  \label{tab:hashtags15M}
  \begin{tabular}{@{}lrr@{}}
    \toprule[1.5pt]
    \textbf{Hashtag}  & \textbf{Tweets} & \textbf{Ratio}* \\
    \midrule
    acampadasol       & 646.853         & 25,80           \\
    spanishrevolution & 605.764         & 24,16           \\
    15m               & 572.047         & 22.82           \\
    nolesvotes        & 302.745         & 12,08           \\
    democraciarealya  & 242.903         & 9,69            \\
    nonosvamos        & 103.889         & 4,14            \\
    notenemosmiedo    & 84.614          & 3,38            \\
    yeswecamp         & 56.938          & 2,27            \\
    19j               & 56.622          & 2.26            \\
    globalcamp        & 37.024          & 1,48            \\
    bcnsinmiedo       & 37.024          & 1,48            \\
    globalcamp        & 35.877          & 1,43            \\
    estoesreflexion   & 31.220          & 1,25            \\
    15mani            & 28.891          & 1,15            \\
    \bottomrule[1.25pt]
  \end {tabular}
  \begin{itemize}
  \item[*] Porcentaje de Tweets respecto a la muestra.  La relación
    tweet:hashtag suele ser de tipo 1:n.  Muestra $=$ 2.507.027
    tweets.
  \end{itemize}
\end{table}

\end{document}

在此处输入图片描述

相关内容