Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AY 22-23] Multi-Line Title Spacing Requires Manual Changes #36

Closed
patrickrperrine opened this issue Nov 26, 2023 · 2 comments · Fixed by #40
Closed

[AY 22-23] Multi-Line Title Spacing Requires Manual Changes #36

patrickrperrine opened this issue Nov 26, 2023 · 2 comments · Fixed by #40

Comments

@patrickrperrine
Copy link

The \title field in "frontmatter.tex"

\title{Your Thesis Title}

will need to be manually spaced-out for multi-line titles, like so

\title{Multi-line Thesis Title Following The\\ \vspace{3.5mm}Upside-Down Pyramid Format}

This can cause other spacing problems where the \title field is used by default such as on the Abstract Page (iv), which also has a related spacing issue raised here as Issue #34.

@patrickrperrine
Copy link
Author

(Accidentally marked as 'Closed')

It would also be nice if the title could be automatically displayed in an upside-down pyramid form, which would mitigate the need for manually determining where the appropriate spacing should be placed in the title field.

@kpa28-git
Copy link

Thanks.
I created a command \covertitle just for the title on the cover page.
Changing the frontmatter title field unfortunately changes the titles on pages (iii) and (iv). This might not be a problem for page (iv) depending on the structure of the title, but it uses the wrong indentation for page (iii) regardless.

I created a file "frontmatter2.tex" and added this content:

\newcommand{\covertitle}[0]{Multi-line Thesis Title Following The\\ \vspace{3.5mm}Upside-Down Pyramid Format}

I included "frontmatter2.tex" from "main.tex" (around line 116, line number might not be exactly right because I added other things to my "main.tex"):

% Declarations for Front Matter
\input{frontmatter}
\input{frontmatter2} % XXX formatting workarounds

I made these changes to "ucthesis.cls" (lines 336-348):

        \MakeTextUppercase{\covertitle} % XXX \title -> \covertitle [https://github.com/CalPolyCSC/thesis-template/issues/36]
    % or another variation would be:
    % \textsc{\@title}

        %\vfill\null
        \addvspace{1.15in} % XXX 1.4 -> 1.15 [https://github.com/CalPolyCSC/thesis-template/issues/27]

    A Thesis \par
    presented to \par
    the Faculty of California Polytechnic State University, \par
    \@campus

        \addvspace{1.15in} % XXX 1.4 -> 1.15 [https://github.com/CalPolyCSC/thesis-template/issues/27]
        %\vfill\null

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants