emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] Table notes (below table) in LaTeX?


From: Melanie Bacou
Subject: [O] Table notes (below table) in LaTeX?
Date: Sun, 22 Feb 2015 17:50:15 -0500
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0

Hi,
I have a document with over 50 tables and I need to indicate data sources right below every table. Looking through the list I've found the workaround below, but it's rather syntax heavy, and places the table notes a little too far from the actual table.


#+CAPTION: Tanzania Segmentation (Scheme #1, 23 Segments)
#+NAME: tab:tza-seg1
#+ATTR_LATEX: :environment tabu :align lrrr
#+begin_threeparttable
| Segment           |      Area | Population |   Population |
|                   |           |            |      Density |
|                   | /sq. km./ |            | /pp/sq. km./ |
|-------------------+-----------+------------+--------------|
| <l>               |       <r> |        <r> |          <r> |
| BC, CM            |     4,178 |    983,305 |          235 |
| BC, CM, RS-WR     |     9,057 |    672,557 |           74 |
| BC, ML            |     7,618 |    358,121 |           47 |
| SM, CM            |    11,836 |  2,288,607 |          193 |
| TM                |    23,958 |  1,287,792 |           54 |
#+begin_tablenotes
_Source_: authors and other notes and data sources.
#+end_tablenotes
#+end_threeparttable

Instead I'd like to simply place all data sources and notes in a bottom row (as in the LaTeX fragment below).

\begin{table}[htb]
\caption{\label{tab:tza-seg1}Tanzania Segmentation (Scheme \#1, 23 Segments)}
\centering
\begin{tabu}{lrrr}
\toprule
Segment & Area & Population & Population\\
 &  &  & Density\\
 & \emph{sq. km.} &  & \emph{pp/sq. km.}\\
\midrule
BC, CM & 4,178 & 983,305 & 235\\
BC, CM, RS-WR & 9,057 & 672,557 & 74\\
BC, ML & 7,618 & 358,121 & 47\\
RS-WR & 13,729 & 412,623 & 30\\
RS, CM & 10,959 & 1,059,554 & 97\\
SM & 5,592 & 514,030 & 92\\
SM, CM & 11,836 & 2,288,607 & 193\\
TM & 23,958 & 1,287,792 & 54\\
\bottomrule
Source: authors and other notes and data sources.\\
\end{tabu}
\end{table}


Any tip to achieve this without using threeparttable?
Thanks, --Mel.


--
Melanie BACOU
International Food Policy Research Institute
Snr. Program Manager, HarvestChoice
E-mail address@hidden
Visit www.harvestchoice.org




reply via email to

[Prev in Thread] Current Thread [Next in Thread]