This is honestly a part of my project that I have been dreading. I am wondering how to improve the appearance of my SAS output in my latex document because right now . . . it's not amazing. Any suggestions are appreciated!
Here's a snippet of my code:
\documentclass[twocolumn]{article}
\usepackage{booktabs, makecell, tabularx}
\renewcommand\theadfont{\normalsize}
\renewcommand\theadgape{}
\setcellgapes{2pt}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}
\usepackage{caption}
\usepackage{textcomp}
\usepackage{graphicx}
\begin{document}
\includegraphics[width=8cm,height=7cm]{bubble.png}
\end{document}
Have a look:
Edit: 4/28
@NicolaTalbot made the line width statement evident to me:
\documentclass[twocolumn]{article}
\usepackage{booktabs, makecell, tabularx}
\renewcommand\theadfont{\normalsize}
\renewcommand\theadgape{}
\setcellgapes{2pt}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}
\usepackage{caption}
\usepackage{textcomp}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{rotating}
\usepackage{booktabs, makecell}
\usepackage[referable]{threeparttablex}
\usepackage{siunitx}
\usepackage[skip=1ex]{caption}
\title{\LARGE \bf ECON 425 Term Paper}
\begin{document}
\includegraphics[width=\linewidth]{bubble.png}
\end{document}
This is cool, but the image still doesn't appear centered within the column which is a bit disorienting. Does anyone know how to situate the figure more in the center?
This is what it currently looks like:


\includegraphics[width=8cm,height=7cm]{bubble.png}just specify one of width or height otherwise you will distort the image – David Carlisle Apr 27 '18 at 20:22\includegraphics[width=\linewidth]{bubble.png}or\includegraphics[width=0.9\linewidth]{bubble.png}– Nicola Talbot Apr 27 '18 at 22:57figureenvironment it should be sufficient to do something like\begin{figure}\centering\includegraphics[...]{...}\caption{}...\end{figure}. Outside of afigureenvironment you need something like{\centering\includegraphics[...]{...}\par}(the\parbefore the closing brace is important). Or just\noindent\includegraphics[...]{...}– Nicola Talbot Apr 28 '18 at 23:32