Graphics, Figures & Tablesone-page table

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
coandrei
Posts: 5
Joined: Mon Jun 29, 2009 12:14 pm

one-page table

Post by coandrei »

Hi there,

I have the following table in my document and I would like the text to be continuous no matter where the table is inserted. Currently, the page before the table contains only 4 lines of text. I hope you understood what I meant.
Or is it another better way to solve this?
Thank you!

Code: Select all

\begin{sidewaystable}
\caption{GNSS satellite ephemeris and clock products (broadcast values included for comparison) \citep[source][]{IGS:09}}
\centering
\medskip
\resizebox{\textwidth}{!}{ %
\begin{tabular}{lllll}
\toprule
{\multirow{2}{*}{Identifier}} & {\multirow{2}{*}{Description (file names)}} & Step size  & Accuracy  & {\multirow{2}{*}{Availability and latency (Jan. 2009)}} \\
  & & orbit/clock & orbit/clock &  \\
\midrule
yyn        & Broadcast orbital and  &            & $\approx$ 1.6 m / 7 ns & Updated approximately every 2 h. \\

           & clock parameters &            &            & Validity period is 4 h: 2 h before and 2 h after the reference epoch \\

igu (15 m) & IGS ultra-rapid &     15 min & $\approx$ 0.1 m / 5 ns & 4 $\times$ per day (3 h, 9 h, 15 h, 21 h UTC); 3 h latency \\

           & ephemerides &            &            & \url{ftp://igscb.jpl.nasa.gov/pub/product/wwww/iguwwwwd_hh.sp3} \\

igr (15 m) & IGS rapid ephemerides &     15 min &            & 1 $\times$ per day (17 h UTC); 17 h latency \\

           &            &            &            & \url{ftp://igscb.jpl.nasa.gov/pub/product/wwww/igrwwwwd.sp3} \\

igr (5 m)  & IGS rapid ephemeris and  & 15 min/5 min & 0.05 m / 0.2 ns & 1 $\times$ per day (17 h UTC); 17 h latency \\

           & clock products &            &            & \url{ftp://igscb.jpl.nasa.gov/pub/product/wwww/igrwwwwd.sp3} \\

           &            &            &            & \url{ftp://igscb.jpl.nasa.gov/pub/product/wwww/igrwwwwd.clk} \\

igs (15 m) & IGS final ephemerides &     15 min & $<$ 0.05 m / 0.1 ns & 1 $\times$ per week (Friday); 13 days latency \\

           &            &            &            & \url{ftp://igscb.jpl.nasa.gov/pub/product/wwww/igswwwwd.sp3} \\

igs (5 m)  & IGS final ephemeris and  & 15 min/5 min & $<$ 0.05 m / 0.1 ns & 1 $\times$ per week (Friday); 13 days latency \\

           & clock products &            &            & \url{ftp://igscb.jpl.nasa.gov/pub/product/wwww/igswwwwd.sp3} \\

           &            &            &            & \url{ftp://igscb.jpl.nasa.gov/pub/product/wwww/igswwwwd.clk} \\

rtg (5 m) & JPL real-time  &      5 min &            & 96 $\times$ per day (every 15 min) \\

           & generated ephemerides &            &            & No longer freely available; \\

           &            &            &            & see \url{ftp://sideshow.jpl.nasa.gov/pub/15min/} \\

cod (30 s/5 s) & CODE rapid ephemeris  & 15 min &            & 1 $\times$ per day (10 h UTC); 10 h latency \\

           & and high-rate clock  &   30 s/5 s   &            & \url{ftp://ftp.unibe.ch/aiub/CODE/yyyy/CODwwwwd.EPH} \\

           &  solutions &            &            & \url{ftp://ftp.unibe.ch/aiub/CODE/yyyy/CODwwwwd.CLK} \\

           &            &            &            & \url{ftp://ftp.unibe.ch/aiub/CODE/yyyy/CODwwwwd_05S} \\
\bottomrule
           &            &            &            & \\
\multicolumn{5}{l}{where:} \\
\multicolumn{2}{l}{$\qquad$ d $\qquad $ 1-digit Day of week (0-6)} & \multicolumn{3}{l}{$\qquad$ hh $\; \;$ 2-digit Hour of day (00-23)} \\
\multicolumn{2}{l}{$\qquad$ wwww 4-digit GPS week number} & \multicolumn{3}{l}{$\qquad$ yyyy 4-digit Year}
\\
\end{tabular} }
\label{tab:igsOrbits}
\end{sidewaystable}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

one-page table

Post by localghost »

There already exist solutions which can be found by using the search function of the forum. Show the alleged misbehaviour by means of a minimal working example (MWE). Create longer parts of text with the blindtext package.


Best regards and welcome to the board
Thorsten
coandrei
Posts: 5
Joined: Mon Jun 29, 2009 12:14 pm

one-page table

Post by coandrei »

There was nothing wrong with my solution but the table was on a separate file. When I inserted the code instead using
\include{tab:mytable}
(as it was before) everything went as expected. Thus, I think that include command was breaking the text. Somehow, this feature might be turned off. However, I could not find an answer for now.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

one-page table

Post by localghost »

coandrei wrote:[...] Thus, I think that include command was breaking the text. Somehow, this feature might be turned off. However, I could not find an answer for now.
If you want to keep the code shifted to an external file, you have to use the \input command instead.
Post Reply