I have a long table rotated of 90 degrees, in which I want to insert about tens of \footnote{a text} (they are references to the bibliography for each row of the table, and the table has a few tens of rows). The table goes onto two pages, so that at some points it is automatically interrupted to make space to the references and then continues to the second page.
I am reading a few discussion on this topic, such as this and this. However, they are not very useful in my case, probably because I am using a different class.The class I am using can be found here.
EDIT: MWE Here is a MWE that shows what kind of environment I am using. However, my real table has tens of rows.
\documentclass[twocolumn]{aastex62}\pdfoutput=1
\usepackage{amsmath,amstext}
\usepackage[T1]{fontenc}
\usepackage{apjfonts}
\usepackage{footnote}
\usepackage{threeparttablex, tablefootnote}
\usepackage[figure,figure*]{hypcap}
\newcounter{mytempeqncnt}
\shorttitle{paper}
\shortauthors{authors}
\begin{document}
\title{paper}
\begin{ThreePartTable}
\begin{longrotatetable}
\begin{deluxetable*}{lllccccclll}
\tabletypesize{\scriptsize}
\tablecaption{Table 1\label{table1}}
\tablewidth{700pt}
\tabletypesize{\scriptsize}
\tablehead{
\colhead{Name1} & \colhead{Name2} & \colhead{Name3} & \colhead{Name4} &
\colhead{Name5} & \colhead{Name6} &
\colhead{Name7} & \colhead{Name8} &
\colhead{Name9} & \colhead{Name10} \\
\colhead{} & \colhead{} & \colhead{($^\circ$)} & \colhead{($^\circ$)} &
\colhead{(days)} & \colhead{(days)} &
\colhead{(days)} & \colhead{(degrees)} & \colhead{(degrees)} & \colhead{} }
\startdata
& & & & & & & & & & \\
& & & & \textbf{\normalsize New Names} & & & & & & \\
& & & & & & & & & & \\
Name & data & n1 & n2 & n3 & n4 & n5 & n6 & n7\footnote{A Reference.}
& $<10^{-3}$\footnote{Another reference.}
\enddata
\end{deluxetable*}
\begin{tablenotes}
\small
\item[a]{Note 1. a Reference}
\item[b] Note2. another reference
\end{tablenotes}
\end{longrotatetable}
\end{ThreePartTable}
\end{document}
How do I get my references as footnotes on the same line (perhaps separated by a comma) under the table? Again, consider that the table is long and rotated, so it goes on two pages. Therefore, part of the references will go under the table on the first page, while others on the second page.




threeparttablepackage, to be loaded with theparaoption to make all table notes run together in one big long paragraph (instead of each footnote starting on a new line). Please edit your posting to provide some more information about the mysterious "references for each line of the table" are: are they, essentially, footnote markers? If not, what are they? – Mico Feb 14 '18 at 22:17\footnote{this text}. – Py-ser Feb 14 '18 at 22:53threeparttableis good chaise for notes in table. – Zarko Feb 14 '18 at 23:07threeparttablexwith the reference option is a bit easier. You can even set this up so that the notes are produced using a custom enumerate environment, such as one made withenumitem's inline settings. This way, you don't have to hard-code note labels at all - it is all automatic. But, even without that, you only have to enter them manually once. Could do more with code, obviously. The code I've got might or might not work for you with a little adaption - hard to say. – cfr Feb 14 '18 at 23:26revtex. That's why I said it was hard to say. – cfr Feb 20 '18 at 16:50revtexclass. Most likely I will use another scientific class, such asarticle. – Py-ser Feb 20 '18 at 19:33\usepackage[para]{bigfoot}. See https://tex.stackexchange.com/questions/207975/indentation-problem-with-the-para-option-of-bigfoot – Steven B. Segletes May 30 '18 at 01:42article, but then you complain solutions don't work with some other class. I don't know what you want to avoid doing for each note at all. It is easy to gettablenotesin a paragraph rather than one-per-line, but you've already seen how to do that. Your example only has one non-rotated page, but apparently two pages and rotation are crucial. A clear question with a pertinent MWE would be more likely to get an answer - you're just wasting a bounty. – cfr Jun 05 '18 at 01:17