From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: Converting a Dissertation Template from docx to .org to use for LaTeX Date: Mon, 04 May 2015 18:17:41 +0200 Message-ID: <871tiwmi56.fsf@gmx.us> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42455) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YpJ46-0005Nm-R5 for emacs-orgmode@gnu.org; Mon, 04 May 2015 12:17:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YpJ42-0002IZ-J1 for emacs-orgmode@gnu.org; Mon, 04 May 2015 12:17:54 -0400 Received: from plane.gmane.org ([80.91.229.3]:48748) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YpJ42-0002IQ-Cj for emacs-orgmode@gnu.org; Mon, 04 May 2015 12:17:50 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YpJ40-0002NV-Cs for emacs-orgmode@gnu.org; Mon, 04 May 2015 18:17:48 +0200 Received: from 46.166.188.245 ([46.166.188.245]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 May 2015 18:17:48 +0200 Received: from rasmus by 46.166.188.245 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 May 2015 18:17:48 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi Paul, Paul Harper writes: > How do I get the preamble above the title? > > How do I make the fonts smaller in the title? > > I need some items to appear on a page of their own. (ie. Ethical Approval, > Abstract, Declaration, Table of Contents.) How do I do that? Do you know KOMA-Scrip? It has good support for title pages. Check section 3.7 in the KOMA-Script manual. If it has everything you need just that. If your university provides a latex template, and one department there certainty will, why not use that? Just port the university's class or recommend preamble to Org via org-latex-classes, org-latex-title-command, #+LATEX_HEADER or similar. Alternatively, it's not hard roll you own title-page.tex. An example is below. You may also find interest in Eric's experience on writing a thesis in Org: http://lists.gnu.org/archive/html/emacs-orgmode/2014-08/msg00113.html Example of a titlepage: \begin{fullsizetitle} \vspace{2cm} \begin{center} \begin{minipage}[t][0.89\textheight]{.80\linewidth} \sffamily \raggedleft \itshape \mbox{{\Large \PaperType\xspace $\circ$ \University\xspace $\circ$ \Date}} \vspace{1.5cm} \noindent {\fontsize{20mm}{20mm}\selectfont \noindent\rule{.9\textwidth}{2pt}\\[.25ex] \noindent\Title \noindent\rule{.9\textwidth}{2pt}\vspace*{1ex}} {\fontsize{15mm}{15mm}\selectfont \vspace{3cm} {\Huge supervised by:\\[-1ex] \Supervisor} \vfill \makebox[\textwidth][r]{\parbox[b]{2cm}{\huge written\\[-1ex]by} \Author} {\huge \SubAuthor}} \end{minipage} \end{center} \end{fullsizetitle} \clearpage % backside of titlepage \thispagestyle{empty} \mbox{}{\itshape\sffamily\noindent\vfill \noindent {\larger[2]{\rule{\textwidth}{.8pt}\vspace*{2ex}% I would like to thank \Supervisor for\cdots\\[1ex]\rule{\textwidth}{.8pt}}} \vfill\vfill\noindent% I would also like to acknowledge financial support from \begin{itemize*} \item f1 \item f2 \end{itemize*}} \clearpage -- Send from my Emacs