Unfortunately I recently stumbled upon hardware issues with my OnePlus One. About 1 inch (2,5 cm) of the display and the soft buttons stopped working suddenly. The display itself is fully intact, but it does not respond to any touch events or gestures anymore. As this leaves the device unusable for most interactions, I desperately searched for a solution on how to disable the defect part of the display. Especially as interaction with the on-screen nav bar is not possible due to the unresponsive 1 inch (2,5cm) high display part. So I basically had to find a way how to “push” the on-screen nav bar up a bit.
Category / Uncategorized
LaTeX: Avoid new Page for /maketitle
By default \maketitle
inserts a new page (via \newpage
) before your actual metadata (like title, author and date). This isn’t always the desired behavior (e.g. when you try to put some text before your title). Fortunately there is a way to circumvent / avoid the explicit pagebreak:
{\let\newpage\relax\maketitle}