I am new to latex and still learning to work with it. I have solved several hard questions but then I stuck with this one. Can anyone help me?
I want to make this table in one landscape mode page. The problems are:
- I set large outer margin for marginal note, for this page, I have reset the margin; but then the header jumps to wrong place; I manage to put away the header but the page number goes from the bottom-right corner to the center
>>> How can the page number goes to the bottom-right corner again?
(I use \thispagestyle{plain} \newgeometry{margin=1in,top=3in})
- How can I erase the indent space in the left of itemize parts;
Can anyone help me with these problems? Thanks in advance
Code: Select all
\begin{landscape}
\thispagestyle{plain}
\newgeometry{margin=1in,top=3in}
\newcommand{\flushleft}
\begin{table}[h]
\centering
\begin{tabular}{|p{1in}|p{1.5in}|p{1.5in}|p{1.5in}|p{1.5in}|}
\hline
& HSC & MBS & BVS & MASVN \\
\hline
Outline &
\begin{itemize}
\setlength{\parskip}{0pt}
\item {}Vietnam macro outlook for 2018: overviewing the macroeconomics state in 2017, following by forecasting for 2018
\item Vietnam securities market: the performance of securities market in 2017; predicting growth and possible fluctuation in 2018
\end{itemize}
& \begin{itemize}
\item Global and Vietnam economy; \begin{itemize}
\item abc;
\item abc;
\end{itemize}
\item Global and Vietnam securities markets; \begin{itemize}
\item 2017 international securities market and 2018 forecast;\item 2017
Vietnam securities market and 2018 forecast;\end{itemize}
\item Potential sector and stocks; \begin{itemize}
\item Potential sectors for 2018;\item Recommended stocks;\end{itemize}
\end{itemize}
& \begin{itemize}
\item Macro overview;\begin{itemize}
\item GDP growth;\item Inflation growth; \item Exchange rate; \item
Interest rate; \end{itemize}
\item Stock market; \item Top-down outlook for potential sectors in
2018;\end{itemize}
& \begin{itemize}
\item Executive summary; \item Economy outlook;\begin{itemize}
\item Higher GDP forecast;\item Structural changes in FDI;\item
Inflationary pressure; \item Mild depreciation of VND;\end{itemize}
\item Equity market outlook;\item Outlook by sector; \end{itemize}
\\
\end{tabular}
\end{table}
\end{landscape}