LyX ⇒ Move the Title, Author Name and Date
-
- Posts: 42
- Joined: Fri Jul 22, 2011 12:26 am
Move the Title, Author Name and Date
How Can I Do that Please? Thank You~
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
-
- Posts: 126
- Joined: Sun Feb 13, 2011 8:36 pm
Move the Title, Author Name and Date
Here is a minimal example:
Code: Select all
\documentclass{report}
\author{John \and Fred\thanks{Slightly insane\dots}}
\title{The Infinite Everything}
\date{\today}
\makeatletter
\renewcommand{\maketitle}{
\begin{titlepage}
\begin{center}
\large
{\LARGE\@title}
\par\vspace{1ex}
\begin{tabular}[t]{c}
\@author
\end{tabular}
\vfill
\@date
\end{center}
\@thanks
\end{titlepage}
}
\makeatother
\begin{document}
\maketitle
The text follows...
\end{document}
-
- Posts: 42
- Joined: Fri Jul 22, 2011 12:26 am
Move the Title, Author Name and Date
Although I have not tried your code yet, I guess it will work!
By the way, I'd solved my problem in the following way. I put the following code on the front of the document without using LyX to explicitly specify any title, author, and date environment.
Code: Select all
\begin{titlepage}
\raggedleft
\definecolor{brownie}{RGB}{85,65,40}
\pagecolor{brownie}
\textcolor{white}{
{\large Oinker\\[1in]}
{\Huge\scshape The Story of Pig\\[.2in]}
\vfill
{\itshape Dec. 5th 2011}
}
\end{titlepage}