Text FormattingHow to re-locate page number, how to erase the itemizes indent

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Ly Le
Posts: 1
Joined: Mon Jun 25, 2018 8:34 am

How to re-locate page number, how to erase the itemizes indent

Post by Ly Le »

Dear all,

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}
Last edited by Stefan Kottwitz on Mon Jun 25, 2018 12:12 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

How to re-locate page number, how to erase the itemizes indent

Post by Stefan Kottwitz »

Hi,

welcome to the forum!

The indentation can be reduced by changing \itemindent right after the itemize list is started:

\begin{itemize}\setlength{\itemindent}{-1.6em}

Regarding the page number position: I would just not change the margin, so the number stays where it is... for other thoughts I would have to see your complete settings (preamble) with geometry settings.

Stefan
LaTeX.org admin
Post Reply