All Projects → Pseudomanifold → Latex Mimosis

Pseudomanifold / Latex Mimosis

Licence: mit
A minimal & modern LaTeX template for your (bachelor's | master's | doctoral) thesis

Projects that are alternatives of or similar to Latex Mimosis

Tufte Latex
A Tufte-inspired LaTeX class for producing handouts, papers, and books
Stars: ✭ 1,161 (+36.59%)
Mutual labels:  latex, latex-template, template
Tum Thesis Latex
📔 A LaTeX template for TUM Bachelor/Master theses.
Stars: ✭ 291 (-65.76%)
Mutual labels:  latex, latex-template, template
Latex Cheatsheet
Template for a compact LaTeX Cheatsheet I made some years ago.
Stars: ✭ 136 (-84%)
Mutual labels:  latex, latex-template, template
Yaac Another Awesome Cv
YAAC: Another Awesome CV is a template using Font Awesome and Adobe Source Font.
Stars: ✭ 516 (-39.29%)
Mutual labels:  latex, latex-template, template
Novathesis
LaTeX template for MSc and PhD thesis (for NOVA University Lisbon an other institutions)
Stars: ✭ 185 (-78.24%)
Mutual labels:  latex, latex-template, template
Kaobook
A LaTeX class for books, reports or theses based on https://github.com/kenohori/thesis and https://github.com/Tufte-LaTeX/tufte-latex.
Stars: ✭ 300 (-64.71%)
Mutual labels:  latex, latex-template
Pandoc Latex Template
A pandoc LaTeX template to convert markdown files to PDF or LaTeX.
Stars: ✭ 3,750 (+341.18%)
Mutual labels:  latex, latex-template
Simple Resume Cv
Template for a simple resume or curriculum vitae (CV), in XeLaTeX.
Stars: ✭ 333 (-60.82%)
Mutual labels:  latex, template
Arxiv Style
A Latex style and template for paper preprints (based on NIPS style)
Stars: ✭ 497 (-41.53%)
Mutual labels:  latex, latex-template
CV-latex
latex template for CV
Stars: ✭ 19 (-97.76%)
Mutual labels:  latex, latex-template
Limecv
A LaTeX CV Document Class
Stars: ✭ 376 (-55.76%)
Mutual labels:  latex, latex-template
Resume
个人中文简历 Latex 源码 https://hijiangtao.github.io/
Stars: ✭ 545 (-35.88%)
Mutual labels:  latex, latex-template
Focus Beamertheme
Focus: a minimalist presentation theme for LaTeX Beamer.
Stars: ✭ 263 (-69.06%)
Mutual labels:  latex, latex-template
Fduthesis
LaTeX thesis template for Fudan University
Stars: ✭ 315 (-62.94%)
Mutual labels:  latex, latex-template
pape-rs
A Latex template to PDF generation web service written in Rust.
Stars: ✭ 69 (-91.88%)
Mutual labels:  latex, latex-template
Business Card
A business card in LaTeX.
Stars: ✭ 648 (-23.76%)
Mutual labels:  latex, latex-template
Thesisuestc
ThesisUESTC-电子科技大学毕业论文模板
Stars: ✭ 577 (-32.12%)
Mutual labels:  latex, template
Zjuthesis
Zhejiang University Graduation Thesis LaTeX Template
Stars: ✭ 720 (-15.29%)
Mutual labels:  latex, latex-template
Cleanthesis
Clean Thesis is a clean, simple, and elegant LaTeX style (or template) for thesis documents.
Stars: ✭ 787 (-7.41%)
Mutual labels:  latex, template
latex-beamer-teamplates
My LaTeX Beamer Templates for Daily Presentation and Documentation.
Stars: ✭ 14 (-98.35%)
Mutual labels:  latex, latex-template

latex-mimosis: A minimal & modern template for your thesis

This repository contains a minimal & modern LaTeX template for dissertations and other university documents.

For the impatient or curious: this is what the template looks like. You may also want to take a look at my my Ph.D. dissertation, which uses a predecessor of this template.

Users

Before going over the details of this template, why not look at how it looks in practice? The following documents have been typeset with this template (or a slightly modified variant of it):

Advantages

This template aims to be…

  • clean: no LaTeX trickery
  • minimal: no unnecessary adjustments and decorations
  • modern: typographically pleasing

It is specifically suited for the European education system because it uses A4 paper size by default—this can be easily adjusted to fit your personal needs, though (see below).

The class is based on KOMA-script, so it should be flexible enough to suit virtually any purpose.

How to use

  • Clone this repository
  • Copy the file mimosis.cls into your document directory
  • Add \documentclass{mimosis} to your document preamble
  • Optionally copy the file Thesis.tex and the files in Sources as a starting point
  • Use latexmk to build the document using pdflatex
  • Write a nice thesis in LaTeX

How to customize

The template is based on the excellent KOMA-script class. You can thus change the appearance of many things quite easily. For example, if you want the thesis to use the letter paper format, just add

\KOMAoptions{paper=letter}

in the preamble of the document and recompile.

Example

The repository comes with an example file called Thesis.tex. Please take a look at this file in order for more detailed instructions about how to use the class.

It is recommended to use latexmk to build your LaTeX documents. Your distribution might already have this command. If so, you can use

latexmk

in the main directory of this repository in order to build the example file.

Required packages for the class

The template uses various LaTeX packages that you should install using your favourite LaTeX distribution. Some distributions already do this automatically when you compile the document for the first time. Others require manual updates. Please refer to the documentation of your LaTeX distribution for more details.

Here is a list of packages that you need (I am using the package name as specified on CTAN):

Required packages for the example document

Typesetting the example document requires an additional set of packages. Feel free to remove them, though—they are only used for showcasing how a real document might look like.

For pdfTeX users:

For LuaTeX or XeTeX users:

  • The Minion Pro font; please use your favourite search engine for this or change the line \setmainfont{Minion Pro} in the preamble to another font (or leave it out entirely)

License

The template uses the MIT license. Please see the file LICENSE.md in the main directory of the repository for more details.

Known issues

The superscript citation style is not compatible with all citation styles. For example, to use the citation with chem-angew, please use an adjusted \supercite command such as this one:

\DeclareCiteCommand{\supercite}[\mkbibsuperscript]
{\bibopenbracket%
	\usebibmacro{cite:init}%
	\let\multicitedelim=\supercitedelim
	\usebibmacro{prenote}}
{\usebibmacro{citeindex}%
	\usebibmacro{cite:comp}}
{}
{\usebibmacro{cite:dump}%
	\usebibmacro{postnote}%
	\bibclosebracket%
}

Thanks to Carlo Botha for this contribution!

Extensions

Table of contents per chapter

If you want a small table of contents for each chapter, update mimosis.cls as follows:

\usepackage[automark,headsepline,plainheadsepline]{scrlayer-scrpage}
\pagestyle{scrheadings}
\automark[section]{chapter}

\lehead*{\headmark}
\cehead{}
\rehead{\headmark}

\lohead{\headmark}
\cohead{}
\rohead*{\headmark}

\newpairofpagestyles[scrheadings]{chapter}{%
	\KOMAoptions{headsepline=false,plainheadsepline=false}%
	\ihead*{}%
	\ohead*{}%
}

\newpairofpagestyles[scrheadings]{part}{%
	\KOMAoptions{headsepline=false,plainheadsepline=false}%
	\ihead*{}%
	\ohead*{}%
}

\renewcommand*\chapterpagestyle{chapter}

\renewcommand*\partpagestyle{part}

This extension was contributed by Nikos Antoniadis in issue 16. If you want to add this as proper extension or configurable parameter, please let me know!

Frequently asked questions (FAQ)

  1. Does the template support bold fonts?

Yes. First of all, you can change the default font (my personal suggestion is to use the fontspec package and xelatex or lualatex; then, changing your font is as easy as using \setmainfont). Second, note that in older TeX distributions, the font ‘EB Garamond’, shipped in the ebgaramond package, does not ship with a bold variant. Consider updating your TeX distribution or manually replacing the font. This is not an issue with this package—please see issue #10 for more information.

Contributing

If you require additional features, find some bugs, or just have some generic inquiries, please just open an issue in this repository.

Contributors

Here is a list of contributors:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].