创建一个美观的附录

创建一个美观的附录

正如 Mark S. Everitt 在表格/图形布局表格/图形等应该看起来很漂亮,否则它们就毫无用处了。因此,人们应该同样关注附录中提供的信息。现在,我创建了一个相当丑陋的附录,因为我不知道更好的。:-/ 也许有人有一些建议来增强我的附录的外观:

\documentclass{article}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[german]{babel}
\usepackage{array}
\usepackage{lscape}
\usepackage{booktabs}
\usepackage{enumitem}% for control of list spaceing
\usepackage{graphicx}
\usepackage{subfig}%for subfloat
\begin{document}
%\newcolumntype{C}[1]{>{\arraybackslash}m{#1}}
\newcolumntype{R}[1]{>{\raggedright\arraybackslash}p{#1}}% This creates a column type with no text justification
\begin{landscape}

\section{Appendix A: quarterly data}

%GDP
\subsection{Gross domestic product}
\begin{tabular}{R{4cm}R{4cm}R{4cm}R{4cm}}     %<--- damit geht es jetzt auch ;)
\toprule
\multicolumn{1}{c}{\textbf{Cluster 1}} & \multicolumn{1}{c}{\textbf{Cluster 2}} & \multicolumn{1}{c}{\textbf{Cluster 3}} & \multicolumn{1}{c}{\textbf{Cluster 4}} \\ 
\midrule
\begin{itemize}[nolistsep,leftmargin=*]
 \item Canada, France, Germany
 \item Austria, Belgium, Netherlands, Switzerland
 \item Finland, Iceland, Norway, Sweden
 \item Greece, Portugal, Spain
 \item New Zealand
\end{itemize}
 & 
\begin{itemize}[nolistsep,leftmargin=*]
\item Italy, Japan, United Kingdom, United States
\item Denmark, Ireland
\item Estonia, Hungary
\end{itemize}
 & 
\begin{itemize}[nolistsep,leftmargin=*]
 \item Luxembourg
 \item Czech Republic, Slovenia
 \item Australia, Korea, Turkey
\end{itemize}
 & 
\begin{itemize}[nolistsep,leftmargin=*]
 \item Poland, Slovak Republic
 \item Israel
\end{itemize}
\\
\bottomrule
\end{tabular}

%Plots
\begin{landscape}
\begin{figure}[htbp]
   \centering
   \subfloat[Cluster 1]{\label{fig:GDPClusterPlot1}  \includegraphics[width=0.45\textwidth]{GDPClusterPlot1.eps}}
   \subfloat[Cluster 2]{\label{fig:GDPClusterPlot2}  \includegraphics[width=0.45\textwidth]{GDPClusterPlot2.eps}}
   \hspace{1cm}
   \subfloat[Cluster 3]{\label{fig:GDPClusterPlot3}  \includegraphics[width=0.45\textwidth]{GDPClusterPlot3.eps}}
   \subfloat[Cluster 4]{\label{fig:GDPClusterPlot4}  \includegraphics[width=0.45\textwidth]{GDPClusterPlot4.eps}}
\caption{Identified clusters within GDP data}
   \label{fig:GDPClusters}
\end{figure}
\end{landscape}


\newpage




%p.c. GDP
\subsection{Per capita gross domestic product}
\begin{tabular}{R{3.2cm}R{3.2cm}R{3.2cm}R{3.2cm}R{3.2cm}}     %<--- damit geht es jetzt auch ;)
\toprule
\multicolumn{1}{c}{\textbf{Cluster 1}} & \multicolumn{1}{c}{\textbf{Cluster 2}} & \multicolumn{1}{c}{\textbf{Cluster 3}} & \multicolumn{1}{c}{\textbf{Cluster 4}} & \multicolumn{1}{c}{\textbf{Cluster 5}} \\
\midrule
\begin{itemize}[nolistsep,leftmargin=*]
  \item Canada, Italy, Japan, United Kingdom, United States
  \item Denmark, Iceland, Ireland, Norway
  \item Hungary
  \item Spain
\end{itemize}
 & 
\begin{itemize}[nolistsep,leftmargin=*]
  \item Germany
  \item Netherlands
  \item Czech Republic, Slovenia
  \item Israel, Korea, Turkey
\end{itemize}
 & 
\begin{itemize}[nolistsep,leftmargin=*]
 \item France
 \item Austria, Belgium, Switzerland
 \item Sweden
 \item Portugal
 \item Australia, New Zealand
\end{itemize}
 & 
\begin{itemize}[nolistsep,leftmargin=*]
 \item Luxembourg
 \item Finland
 \item Estonia
 \item Greece
\end{itemize}
 & 
\begin{itemize}[nolistsep,leftmargin=*]
 \item Poland, Slovak Republic
\end{itemize}
\\
\bottomrule
\end{tabular}

%5 Plots
\begin{landscape}
\begin{figure}[htbp]
   \centering
   \subfloat[Cluster 1]{\label{fig:pcGDPClusterPlot1}  \includegraphics[width=0.45\textwidth]{pcGDPClusterPlot1.eps}}
   \subfloat[Cluster 2]{\label{fig:pcGDPClusterPlot2}  \includegraphics[width=0.45\textwidth]{pcGDPClusterPlot2.eps}}
   \hspace{1cm}
   \subfloat[Cluster 3]{\label{fig:pcGDPClusterPlot3}  \includegraphics[width=0.45\textwidth]{pcGDPClusterPlot3.eps}}
   \subfloat[Cluster 4]{\label{fig:pcGDPClusterPlot4}  \includegraphics[width=0.45\textwidth]{pcGDPClusterPlot4.eps}}
   \hspace{1cm}
  \subfloat[Cluster 5]{\label{fig:pcGDPClusterPlot5}  \includegraphics[width=0.45\textwidth]{pcGDPClusterPlot5.eps}}
\caption{Identified clusters within p.c. GDP data}
   \label{fig:pcGDPClusters}
\end{figure}
\end{landscape}


\end{landscape}
\end{document}

相关内容