I'm trying to set up an article with a very large letter above the title stuff. The adjustbox command from the same-named package seems nice, but it always adds a newpage after the enlarged box and I can't seem to figure out why or get rid of it.
\documentclass[10pt,pdftex]{article}
\usepackage{adjustbox}
\usepackage{lipsum}
\begin{document}
\title{Hello World}
\author{Joe Blow}
\date{Yesterday}
\begin{adjustbox}{width=.25\textwidth,center}
A
\end{adjustbox}
\maketitle
\newpage
\lipsum[1-3]
\end{document}
\bfhas not been defined by default in latex since 1993 although article class defines it for compatibility with documents that are older than that however it doesn't take an argument, so the syntax would be\bf Hellonot\bf{Hello}It isn't clear what you mean by a newline, here? but thecenterkey you are passing to adjustbox makes it full width with centred content (which is why you get overfull box warnings as you have a space either side of that box, and the vertical rules from fbox so it does not fit in the page. – David Carlisle Oct 12 '20 at 22:49\newpage. I removed the\bfand the results are still the same. To restate, the large A should appear just above the title stuff on the same page. Instead, the title stuff appears on the NEXT page. – Frotz Oct 13 '20 at 01:43