Giter VIP home page Giter VIP logo

ut-thesis's People

Contributors

jessexknight avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

ut-thesis's Issues

Page numbering

[from email]

Could you please tell me if there is a way to move the page numbering from top left corner to the bottom middle position? If it is possible, could you please provide me with a dummy code or something similar?

SGS / ProQuest formatting rejections

If you have had your thesis rejected by SGS / ProQuest due to formatting issues related to ut-thesis, please:

  • add each issue as a separate comment below and add 👍 to count yourself
  • add 👍 to existing issues you also had flagged
  • add 👎 to issues you could have been flagged for but were not

The current formatting requirements are outlined here but these may not be consistently enforced.

Page Numbering Style - Bottom of Page

The page numbering appears on the top left/right of the page in the main chapters.

But in the word template provided by SGS it is consistently at the bottom of the page.
Also on according to the SGS Template Website, the page numbering is suggested to be placed at the bottom center.

New option for shared copyright

Hi @jessexknight. Thanks for maintaining this class. One of my dissertation chapters is based on a publication for which the publisher holds the copyright. I am careful to note the specific copyright on the first page of that chapter, as required by the publisher. I think in this case, the general copyright statement on the cover page is incorrect. I would like to append the phrase "except where otherwise noted". Since the copyright statement is baked into the class. I came up with two ways to get around this, and figured I'd share them here; though I admit that the requirement may be an edge case.

Option 1 - new class option

My first attempt was to directly address my specific requirement, where I just wanted a brief disclaimer to follow my name.

\newcommand\copyrightstatement{{\copyright} Copyright {\@gradyear} by {\@author}}
\DeclareOption{sharedcopyright}{%
    \renewcommand\copyrightstatement{{\copyright} Copyright {\@gradyear} by {\@author}, except where otherwise noted}
}

I then replaced the copyright line in the class by \copyrightstatement

Option 2 - a new command

Alternatively, I thought additional flexibility might be desirable. I don't really need it, but I guess there could be a situation where, e.g., I could want to use "Conor Ian" as the author name, but "Conor I." as the copyright name. I tried to come up with a new command that defaults to the value of \@author if it is empty.

\newcommand*{\copyrightauthor}[1]{%
    \if\relax\detokenize{#1}\relax
        \gdef\@copyrightauthor{\@author}
    \else
        \gdef\@copyrightauthor{#1}
    \fi
}

This works great, for instance, if I insert \copyrightauthor{Conor I. Anderson, except where otherwise noted} into my main.tex file. The major drawback here is that omitting \copyrightauthor{} causes no name to be printed at all (I had hoped it would print the value of \@author). I am pushing the limits of my LaTeX knowledge on this one. I note also that I avoided using a new package for this - I am sure there are clean ways to do this with a new package.

The colour of the items in Table of Contents, List of Tables and List of Figures should be black

I was just recently asked for a revision to my thesis submission by SGS because the text in the \tableofcontents, \listoftables and \listoffigures was red, not black. Looks like it's red because it is hyperlinked to the corresponding section/table/figure. I hacked a fix by defining a new command:

% Custom command to set hyperlink colors to black
\newcommand{\blacklinks}{\hypersetup{linkcolor=black}}
\newcommand{\defaultlinks}{\hypersetup{linkcolor=red}} % Set this to your default link color

and then wrapping my calls to \tableofcontents, \listoftables and \listoffigures in main.txt with it:

\blacklinks
\tableofcontents
\listoftables
\listoffigures
\defaultlinks

Department Name “Graduate ..."

Hi,
When using the template, I've had SGS request that I remove the word "Graduate" before the department name on the title and abstract pages.

This is the comment they sent me on that: "Please remove the word ‘Graduate’ from your Department Name on both your Title and Abstract pages. At the moment the template does include the word ‘Graduate’ but we are working with the library to have that corrected."

image

Conflict of \degree Command

The \degree command is also used in the gensymb package as a degree symbol (for example for temperature units or angles), causing a conflict with the degree name from this class. This can be solved with a workaround to assign the degree symbol to a different command name, but it is messy and does not work 100%.

Since the gensymb package is likely used often with technical theses, it would be good to rename the \degree command to something which does not conflict, such as \degreetitle or \degreename.

include list of tables and figures in the TOC

The SGS requires this now:
Please include the List of Tables, List of Figures, and the Table of Contents itself in the TOC as per the following example:

Example:
Table of Contents ……………………... iv
List of Tables ……………………………. vi
List of Figures ....................................... vii
Introduction .......................................... 1

Section title of TOC

The default section title generated by \tableofcontents is "Contents", but it needs to be "Table of Contents".

Here is the related part of the rejection email from ProQuest.

Contents Section:

- This should be changed to Table of Contents

It should be solved by renewing \contentsname. (cf. https://tex.stackexchange.com/questions/28516/)

For example,

\renewcommand{\contentsname}{Table of Contents}
\tableofcontents

Sudden change of spacing between paragraphs/formulas

Hi Jesse. I am facing one issue with my thesis formatting. There was a change in the space between paragraphs and I am not able to solve this problem. This is also affecting the space between one of the headings and the text. Have you seen this issue before?

capitalization of title?

[from email]

It seems like we cannot change the title style if we want not all the letters becoming capitalized....Is this a convention or default setting for this module? How could we change it back to proper capital and small letters for title?

Chapter and Section numbering?

I have something weird happening with the chapter and section numbering when using the ut-thesis class.

  • None of the chapters are numbered, either in the TOC or in the actual text (created using the \chapter command).
  • Sections within each chapter are prefixed by a 0.x, where x proceeds sequentially from 1 (the first section is numbered 0.1, the next one 0.2,...)
  • Section numbers don't reset in each chapter. So if I have 2 sections in the first chapter (0.1, 0.2), then the first section in the second chapter starts with the number 0.3.

Any idea why this could be happening? I'm working on Overleaf, and have followed the test examples for how to set the document up.

Thanks!

separate book draft behaviour from marking DRAFT in the corners

The current draft option has many package-level effects. These should probably be kept separate from marking the corners with DRAFT, which can be useful for circulating pre-final copies. Propose:

  • new option, draftmark that marks the corners
  • keep and pass draft option to book, which should also result in draftmark

Undefined control sequence for \frontmatter, \mainmatter, and \backmatter

I tried to compile the following simple document

\documentclass{ut-thesis}
\author{Jane Doe}
\title{Title of the Example Thesis}
\degree{Doctor of Philosophy}
\department{Institute of Medical Science}
\gradyear{2020}
% \addbibresource{refs}
\usepackage{lipsum}
\begin{document}
\frontmatter
\maketitle
\begin{abstract}
\lipsum
\end{abstract}
\tableofcontents
\listoftables
\listoffigures
\mainmatter
\lipsum
\appendix
\backmatter
\lipsum
\end{document}

And got the following errors

! Undefined control sequence.
l.10 \frontmatter
...
! Undefined control sequence.
l.18 \mainmatter
...
! Undefined control sequence.
l.21 \backmatter

I've attached the full log file here.

It appears I'm using v3.0.0a

In-text citations not appearing chronologically

Hello,

I am using the ut-thesis.cls file in my Overleaf project and the int-text citations are appearing out of order (please see the attached image). For instance, the in-text citations start at the number 10 and 1 does not appear until the next paragraph. Is there any insight into what might be causing this problem?

Screen Shot 2022-07-26 at 19 16 50

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.