I want to make my table fit in the text block. At the minute, a large part of my table is being cut off at the right-hand edge the page. My code is:
\documentclass{article}
\usepackage{graphicx} % for \scalebox macro
\begin{document}
\begin{table}[h]
\begin{center}
\scalebox{0.8}{
\begin{tabular}{|l|l|l|l|l}
\cline{1-4}
Risk Event & Chance of Happening & Severity & Measures to be taken & \\ \cline{1-4}
Team member missing meetings & Significant & Low & Encourage team members to read over minutes and inform of any tasks set. If regularly absent issue a warning and then card. & \\ \cline{1-4}
QA/Project manager missing meetings & Significant & Low/Moderate & Deputy in role will act as manager. & \\ \cline{1-4}
Team member leaving project group & Low & Moderate/High & List all tasks assigned to missing team member and reassign them, after this refactor the timetable and planning. & \\ \cline{1-4}
\end{tabular}}
\end{center}
\end{table}
\end{document}
I have tried replacing \begin{center} with flushleft to no avail. How can I make the table fit in the page?



[h]on its own (latex usually warns and changes it to[ht]as it makes it virtually impossible to place the table). Normally you don't want\begin{center}in tables use\centering(as the table already adds vertical space so you do not want the extra space from center environment. Don't forget{%at ends of lines. don't scale tables (it produces font sizes inconsistent with the rest of the document). – David Carlisle Oct 22 '14 at 19:49\begin{center}because I thought that\centeringwould leak through the rest of my document, is this not the case? – Stormie Oct 23 '14 at 01:14