LaTeX table too wide, how can I make it fit?

privatename
\usepackage[utf8]{inputenc}

\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{proof}
\usepackage[left=0.60in, right=0.60in, top=0.65in, bottom=0.65in, footskip=0.1in]{geometry}


\title{Peergrade 1}
\author{anonymous}
\date{September 2020}
\begin{document}


\maketitle
\section{Exercise 1}

\begin{tiny}
\begin{table}[h]
\begin{tabular}{|l|l|l|l|l|l|l|l|l|l|}
\hline
A & B & C & A -\textgreater B & B -\textgreater $\sim$C & A -\textgreater $\sim$C & C -\textgreater $\sim$A & (A -\textgreater  $\sim$C) /\textbackslash (C -\textgreater $\sim$A) & (B -\textgreater $\sim$C) -\textgreater ((A -\textgreater $\sim$C) /\textbackslash (C -\textgreater $\sim$A)) & Prop 1 \\ \hline
T & T & T & T                 & F                       & F                       & F                       & F                                                                    & T                                                                                                             & T      \\ \hline
T & T & F & T                 & T                       & T                       & T                       & T                                                                    & T                                                                                                             & T      \\ \hline
T & F & T & F                 & F                       & F                       & F                       & F                                                                    & T                                                                                                             & T      \\ \hline
T & F & F & F                 & T                       & T                       & T                       & T                                                                    & T                                                                                                             & T      \\ \hline
F & T & T & T                 & F                       & T                       & T                       & T                                                                    & T                                                                                                             & T      \\ \hline
F & T & F & T                 & T                       & T                       & T                       & T                                                                    & T                                                                                                             & T      \\ \hline
F & F & T & T                 & F                       & T                       & T                       & T                                                                    & T                                                                                                             & T      \\ \hline
F & F & F & T                 & T                       & T                       & T                       & T                                                                    & T                                                                                                             & T      \\ \hline
\end{tabular}
\end{table}
\end{tiny}



\end{document}

Can anyone help me so that the table fits in LaTeX? It almost fits, but half of the last column part goes outiside the paper. I have already tried to add /small and /footnotesize, but it doesnt work.

samcarter_is_at_topanswers.xyz

Please have a look at http://betterposters.blogspot.de/2012/08/the-data-prison.html how to design nice looking tables


You could use a tabularx and let latex adjust the size:

\documentclass{article}

\usepackage[utf8]{inputenc}

\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{proof}
\usepackage[left=0.60in, right=0.60in, top=0.65in, bottom=0.65in, footskip=0.1in]{geometry}


\usepackage{tabularx}

\title{Peergrade 1}
\author{anonymous}
\date{September 2020}
\begin{document}


\maketitle
\section{Exercise 1}

\begin{tiny}
\begin{table}[h]
\begin{tabularx}{\linewidth}{|l|l|l|l|l|l|l|l|X|l|}
\hline
A & B & C & A -\textgreater B & B -\textgreater $\sim$C & A -\textgreater $\sim$C & C -\textgreater $\sim$A & (A -\textgreater $\sim$C) /\textbackslash (C -\textgreater $\sim$A) & (B -\textgreater $\sim$C) -\textgreater ((A -\textgreater $\sim$C) /\textbackslash (C -\textgreater $\sim$A)) & Prop 1 \\ \hline
T & T & T & T & F & F & F & F & T & T \\ \hline
T & T & F & T & T & T & T & T & T & T \\ \hline
T & F & T & F & F & F & F & F & T & T \\ \hline
T & F & F & F & T & T & T & T & T & T \\ \hline
F & T & T & T & F & T & T & T & T & T \\ \hline
F & T & F & T & T & T & T & T & T & T \\ \hline
F & F & T & T & F & T & T & T & T & T \\ \hline
F & F & F & T & T & T & T & T & T & T \\ \hline
\end{tabularx}
\end{table}
\end{tiny}

\end{document}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

How can I make an image fit into available space when too wide?

How do I solve text too wide error in LaTeX?

How can I make my SQL Server table collapse on a unique ID to make into wide format?

R gt table formatting: How can I take my long gt table and make it wide?

Table way too wide to fit in Markdown generated PDF

In Pandas, how can I convert a "long" table to a "wide and sparse" table?

Can I make the entire "Table 1" clickable as a reference in Latex?

How can I make all inserted images in the textarea 100% wide

How can I make an element as wide as it is high in css?

How can I make all elements equally wide in flexbox?

LaTeX, How to fit a large table in a page

Table column is too wide

Bootstrap4: "col-12" is still too wide in the mobile screen, how can I wrap text?

bootstrap table columns too wide, when I set no-wrap

In NativeScript, how can I make a label automatically resize to fit content?

Mattooltip: How can I make the box fit the text?

How can I make the page expand to fit the screen?

How can I make Chrome shrink to fit on printing?

How can I make a flexbox container that stretches to fit wrapped items?

How can I make two iframes fit the width of the page?

How can I make my image fit in completely in a UIView

How i can make an iframe to fit in my page?

how can i make text best fit based on text length?

How do I make a heatmap with wide data?

How can I make a bulma table responsive?

How can I make a Table mobile responsive

How can I make this table scrollable?

How can I make angled table headers?

how can I make a generic table component?

TOP Ranking

HotTag

Archive