删除乳胶中的随机分页符

问题描述 投票:0回答:1

我正在尝试编写简历,但一直在中心部分和\ section * {Professional Experience}之间出现分页符。如果我删除了该部分*,则仍然在“专业经验”一词之后出现分页符。我尝试了\ nopagebreak和\ filpage,但都没有用。下面是一个代码片段:

\usepackage[margin=3cm]{geometry}

\usepackage{array, xcolor}
\definecolor{lightgray}{gray}{0.8}
\newcolumntype{L}{>{\raggedleft}p{0.14\textwidth}}
\newcolumntype{R}{p{0.8\textwidth}}
\newcommand \VRule{\color{lightgray}\vrule width 0.5pt}

\usepackage{hyperref}
\usepackage{ragged2e}
\usepackage{lipsum}

\newenvironment{absolutelynopagebreak}
  {\par\nobreak\vfil\penalty0\vfilneg
   \vtop\bgroup}
  {\par\xdef\tpd{\the\prevdepth}\egroup
   \prevdepth=\tpd}

\begin{document}

\pagenumbering{gobble}
\begin{center} 
\textbf{\huge Joe M. M. Davies} \vspace{5mm}\\
j.m.m.davies@*******  $|$ [ADDRESS] \vspace{2.5mm} \\
07******* $|$ linkedin.com/in/j******* $|$ https://gitlab.cern.ch/j******** \vspace{2.5mm} \\
Strong analytical, communication and problem solving abilities, developed through my education and work experiences. Looking for a position in data science, suiting my expertise in machine learning.
\end{center} 

\section*{Professional Experience} 
\begin{tabular}{L!{\VRule}R}
July 2019 - September 2019&{\bf Data Science Intern, [REDACTED]}\\ [5pt]
&{Receipt Bank is an accounting/bookkeeping firm that uses machine learning to extract information from receipts. I was working to segment their user base using exploratory data analysis and, specifically, unsupervised machine learning techniques such as k-means clustering. This involved using python with packages like: sklearn, numpy, pandas and scipy. Also developed skills in SQL using both Looker and the SQLalchemy library in python. The results were insights that I presented to the business which aided them in understanding how their users interact with the service (via web or mobile apps). For this I was awarded a monthly salary of £1800 per month. \vspace{5mm}}\\```

(Bits and pieces removed to preserve anonymity)
Many thanks!
computer-vision latex page-break
1个回答
0
投票

您分页的原因可能是\section*{Professional Experience}之后,您启动了一个可能需要整个页面的表(因此,“ Professional Experience”不适合),但是似乎缺少代码,所以我无法分辨。

问候,丽莎

© www.soinside.com 2019 - 2024. All rights reserved.