<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.ulyssis.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Travolter</id>
	<title>ULYSSIS documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.ulyssis.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Travolter"/>
	<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/Special:Contributions/Travolter"/>
	<updated>2026-04-28T18:12:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.15</generator>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Using_the_kulemt_package&amp;diff=472</id>
		<title>Using the kulemt package</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Using_the_kulemt_package&amp;diff=472"/>
		<updated>2017-05-09T14:45:26Z</updated>

		<summary type="html">&lt;p&gt;Travolter: /* User-wide installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We often get the question at our LaTeX workshop how to properly install the&lt;br /&gt;
kulemt package. For this reason, we have decided to provide a proper guideline.&lt;br /&gt;
You can acquire the kulemt package by downloading &amp;quot;kulemt-tds.zip&amp;quot; from&lt;br /&gt;
ftp://ftp.esat.kuleuven.be/latex/kulemt/.&lt;br /&gt;
&lt;br /&gt;
== One-time use ==&lt;br /&gt;
Most people will only use this package once, for their master thesis. In this&lt;br /&gt;
case, you can just put the necessary files in the same folder as your LaTeX&lt;br /&gt;
project.  The easiest way to accomplish this, is to unzip the downloaded file&lt;br /&gt;
and in the unzipped folder, navigate to the directory &amp;quot;tex/latex/kulemt&amp;quot;. Here,&lt;br /&gt;
copy the following files to the same directory as your LaTeX project:&lt;br /&gt;
kulemt.cfg, kulemt.cls, kulemtx.sty, logokul.eps and logokuleng.eps.&lt;br /&gt;
&lt;br /&gt;
== User-wide installation ==&lt;br /&gt;
If you need to use the kulemt package more than a few times, copying these&lt;br /&gt;
five files can become a little bit of a hassle. It is also possible to install&lt;br /&gt;
this package in a central location where LaTeX can find it autonomously. When&lt;br /&gt;
using TeXLive, as we recommend, this involves a bit more work.&lt;br /&gt;
&lt;br /&gt;
First, you should find where to install the packages for your user. This is&lt;br /&gt;
called the TEXMFHOME. The default location of this folder is:&lt;br /&gt;
* For Windows: the folder &amp;quot;texmf&amp;quot; in your %USERPROFILE% (C:\Users\YourUsername for Windows Vista and up).&lt;br /&gt;
* For Linux: &amp;quot;~/texmf&amp;quot;&lt;br /&gt;
* For OS X/macOS: &amp;quot;~/Library/texmf&amp;quot;&lt;br /&gt;
It is possible that this folder needs to be created first. From the extracted&lt;br /&gt;
kulemt-tds.zip, copy the entire directory &amp;quot;tex&amp;quot; to this location (note: the&lt;br /&gt;
directory itself, not only its contents).&lt;br /&gt;
&lt;br /&gt;
If this does not work, or if you want to check the directory first, please&lt;br /&gt;
refer to the section [[#Finding the TEXMFHOME]] at the bottom of this document.&lt;br /&gt;
&lt;br /&gt;
For a more technical overview, you can follow the general guidelines provided&lt;br /&gt;
by the department: ftp://ftp.esat.kuleuven.be/latex/kulemt/README.&lt;br /&gt;
&lt;br /&gt;
== Using the kulemt package ==&lt;br /&gt;
A complete reference for using the kulemt package can be found at&lt;br /&gt;
ftp://ftp.esat.kuleuven.be/latex/kulemt/kulemt.pdf. A minimal working example&lt;br /&gt;
is provided below (inspired by the above manual).&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
\documentclass[master=eelt,masteroption=ei]{kulemt}&lt;br /&gt;
\setup{title={The best master thesis ever},&lt;br /&gt;
  author={First Author\and Second Author},&lt;br /&gt;
  promotor={Prof.\,dr.\,ir.\ Knows Better},&lt;br /&gt;
  assessor={Ir.\,Kn. Owsmuch\and K. Nowsrest},&lt;br /&gt;
  assistant={Ir.\ An~Assistent \and A.~Friend}}&lt;br /&gt;
&lt;br /&gt;
\begin{document}&lt;br /&gt;
\mainmatter&lt;br /&gt;
Test&lt;br /&gt;
\end{document}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that for some other masters, some other options might be&lt;br /&gt;
necessary, such as:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
\setup{&lt;br /&gt;
  translatedtitle={My title in English}, % in case of a Dutch master&lt;br /&gt;
  udc=621.3, % This is the udc number for the faculty of engineering science&lt;br /&gt;
  shortabstract={A short summary of the thesis},&lt;br /&gt;
}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Finding the TEXMFHOME ==&lt;br /&gt;
In case the default location for the TEXMFHOME as stated above does not work,&lt;br /&gt;
you can find the correct directory through command-line. In Linux and macOS,&lt;br /&gt;
look for an app called &amp;quot;Terminal&amp;quot;. In Windows, search for &amp;quot;cmd&amp;quot; using the start&lt;br /&gt;
menu. The program has a black, square logo.&lt;br /&gt;
&lt;br /&gt;
To find out the central location of installed packages, run the following&lt;br /&gt;
command:&lt;br /&gt;
 kpsewhich -var-value=TEXMFHOME&lt;br /&gt;
An example output would be:&lt;br /&gt;
 C:/Users/ULYSSIS/texmf&lt;br /&gt;
If you have found this folder, copy the entire &amp;quot;tex&amp;quot; directory from the&lt;br /&gt;
extracted kulemt-tds.zip to this location, as stated before. Create the folder&lt;br /&gt;
if needed.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
The kulemt package requires the memoir package. Make sure you have this package. We recommend installing the texlive-full package on Ubuntu. When you use the installer from [ftp://ftp.ulyssis.org/LaTeX-Workshop/installers/ our FTP server] for Windows or OS X/macOS, you will automatically have the entire LaTeX suite.&lt;/div&gt;</summary>
		<author><name>Travolter</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Using_the_kulemt_package&amp;diff=471</id>
		<title>Using the kulemt package</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Using_the_kulemt_package&amp;diff=471"/>
		<updated>2017-05-09T14:39:07Z</updated>

		<summary type="html">&lt;p&gt;Travolter: /* User-wide installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We often get the question at our LaTeX workshop how to properly install the&lt;br /&gt;
kulemt package. For this reason, we have decided to provide a proper guideline.&lt;br /&gt;
You can acquire the kulemt package by downloading &amp;quot;kulemt-tds.zip&amp;quot; from&lt;br /&gt;
ftp://ftp.esat.kuleuven.be/latex/kulemt/.&lt;br /&gt;
&lt;br /&gt;
== One-time use ==&lt;br /&gt;
Most people will only use this package once, for their master thesis. In this&lt;br /&gt;
case, you can just put the necessary files in the same folder as your LaTeX&lt;br /&gt;
project.  The easiest way to accomplish this, is to unzip the downloaded file&lt;br /&gt;
and in the unzipped folder, navigate to the directory &amp;quot;tex/latex/kulemt&amp;quot;. Here,&lt;br /&gt;
copy the following files to the same directory as your LaTeX project:&lt;br /&gt;
kulemt.cfg, kulemt.cls, kulemtx.sty, logokul.eps and logokuleng.eps.&lt;br /&gt;
&lt;br /&gt;
== User-wide installation ==&lt;br /&gt;
If you need to use the kulemt package more than a few times, copying these&lt;br /&gt;
five files can become a little bit of a hassle. It is also possible to install&lt;br /&gt;
this package in a central location where LaTeX can find it autonomously when&lt;br /&gt;
using TeXLive, as we recommend. This involves a bit more work.&lt;br /&gt;
&lt;br /&gt;
First, you should find where to install the packages for your user. This is&lt;br /&gt;
called the TEXMFHOME. The default location of this folder is:&lt;br /&gt;
* For Windows: the folder &amp;quot;texmf&amp;quot; in your %USERPROFILE% (C:\Users\YourUsername for Windows Vista and up).&lt;br /&gt;
* For Linux: &amp;quot;~/texmf&amp;quot;&lt;br /&gt;
* For OS X/macOS: &amp;quot;~/Library/texmf&amp;quot;&lt;br /&gt;
It is possible that this folder needs to be created first. From the extracted&lt;br /&gt;
kulemt-tds.zip, copy the entire directory &amp;quot;tex&amp;quot; to this location (note: the&lt;br /&gt;
directory itself, not only its contents).&lt;br /&gt;
&lt;br /&gt;
If this does not work, or if you want to check the directory first, please&lt;br /&gt;
refer to the section [[#Finding the TEXMFHOME]] at the bottom of this document.&lt;br /&gt;
&lt;br /&gt;
For a more technical overview, you can follow the general guidelines provided&lt;br /&gt;
by the department: ftp://ftp.esat.kuleuven.be/latex/kulemt/README.&lt;br /&gt;
&lt;br /&gt;
== Using the kulemt package ==&lt;br /&gt;
A complete reference for using the kulemt package can be found at&lt;br /&gt;
ftp://ftp.esat.kuleuven.be/latex/kulemt/kulemt.pdf. A minimal working example&lt;br /&gt;
is provided below (inspired by the above manual).&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
\documentclass[master=eelt,masteroption=ei]{kulemt}&lt;br /&gt;
\setup{title={The best master thesis ever},&lt;br /&gt;
  author={First Author\and Second Author},&lt;br /&gt;
  promotor={Prof.\,dr.\,ir.\ Knows Better},&lt;br /&gt;
  assessor={Ir.\,Kn. Owsmuch\and K. Nowsrest},&lt;br /&gt;
  assistant={Ir.\ An~Assistent \and A.~Friend}}&lt;br /&gt;
&lt;br /&gt;
\begin{document}&lt;br /&gt;
\mainmatter&lt;br /&gt;
Test&lt;br /&gt;
\end{document}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that for some other masters, some other options might be&lt;br /&gt;
necessary, such as:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
\setup{&lt;br /&gt;
  translatedtitle={My title in English}, % in case of a Dutch master&lt;br /&gt;
  udc=621.3, % This is the udc number for the faculty of engineering science&lt;br /&gt;
  shortabstract={A short summary of the thesis},&lt;br /&gt;
}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Finding the TEXMFHOME ==&lt;br /&gt;
In case the default location for the TEXMFHOME as stated above does not work,&lt;br /&gt;
you can find the correct directory through command-line. In Linux and macOS,&lt;br /&gt;
look for an app called &amp;quot;Terminal&amp;quot;. In Windows, search for &amp;quot;cmd&amp;quot; using the start&lt;br /&gt;
menu. The program has a black, square logo.&lt;br /&gt;
&lt;br /&gt;
To find out the central location of installed packages, run the following&lt;br /&gt;
command:&lt;br /&gt;
 kpsewhich -var-value=TEXMFHOME&lt;br /&gt;
An example output would be:&lt;br /&gt;
 C:/Users/ULYSSIS/texmf&lt;br /&gt;
If you have found this folder, copy the entire &amp;quot;tex&amp;quot; directory from the&lt;br /&gt;
extracted kulemt-tds.zip to this location, as stated before. Create the folder&lt;br /&gt;
if needed.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
The kulemt package requires the memoir package. Make sure you have this package. We recommend installing the texlive-full package on Ubuntu. When you use the installer from [ftp://ftp.ulyssis.org/LaTeX-Workshop/installers/ our FTP server] for Windows or OS X/macOS, you will automatically have the entire LaTeX suite.&lt;/div&gt;</summary>
		<author><name>Travolter</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Using_the_kulemt_package&amp;diff=470</id>
		<title>Using the kulemt package</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Using_the_kulemt_package&amp;diff=470"/>
		<updated>2017-05-09T14:38:22Z</updated>

		<summary type="html">&lt;p&gt;Travolter: /* User-wide installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We often get the question at our LaTeX workshop how to properly install the&lt;br /&gt;
kulemt package. For this reason, we have decided to provide a proper guideline.&lt;br /&gt;
You can acquire the kulemt package by downloading &amp;quot;kulemt-tds.zip&amp;quot; from&lt;br /&gt;
ftp://ftp.esat.kuleuven.be/latex/kulemt/.&lt;br /&gt;
&lt;br /&gt;
== One-time use ==&lt;br /&gt;
Most people will only use this package once, for their master thesis. In this&lt;br /&gt;
case, you can just put the necessary files in the same folder as your LaTeX&lt;br /&gt;
project.  The easiest way to accomplish this, is to unzip the downloaded file&lt;br /&gt;
and in the unzipped folder, navigate to the directory &amp;quot;tex/latex/kulemt&amp;quot;. Here,&lt;br /&gt;
copy the following files to the same directory as your LaTeX project:&lt;br /&gt;
kulemt.cfg, kulemt.cls, kulemtx.sty, logokul.eps and logokuleng.eps.&lt;br /&gt;
&lt;br /&gt;
== User-wide installation ==&lt;br /&gt;
If you need to use the kulemt package more than a few times, copying these&lt;br /&gt;
five files can become a little bit of a hassle. It is also possible to install&lt;br /&gt;
this package in a central location where LaTeX can find it autonomously. When&lt;br /&gt;
using TeXLive, as we recommend, this involves a bit more work.&lt;br /&gt;
&lt;br /&gt;
First, you should find where to install the packages for your user. This is&lt;br /&gt;
called the TEXMFHOME. The default location of this folder is:&lt;br /&gt;
* For Windows: the folder &amp;quot;texmf&amp;quot; in your %USERPROFILE% (C:\Users\YourUsername for Windows Vista and up).&lt;br /&gt;
* For Linux: &amp;quot;~/texmf&amp;quot;&lt;br /&gt;
* For OS X/macOS: &amp;quot;~/Library/texmf&amp;quot;&lt;br /&gt;
It is possible that this folder needs to be created first. From the extracted&lt;br /&gt;
kulemt-tds.zip, copy the entire directory &amp;quot;tex&amp;quot; to this location (note: the&lt;br /&gt;
directory itself, not only its contents).&lt;br /&gt;
&lt;br /&gt;
If this does not work, or if you want to check the directory first, please&lt;br /&gt;
refer to the section [[#Finding the TEXMFHOME]] at the bottom of this document.&lt;br /&gt;
&lt;br /&gt;
For a more technical overview, you can follow the general guidelines provided&lt;br /&gt;
by the department: ftp://ftp.esat.kuleuven.be/latex/kulemt/README.&lt;br /&gt;
&lt;br /&gt;
== Using the kulemt package ==&lt;br /&gt;
A complete reference for using the kulemt package can be found at&lt;br /&gt;
ftp://ftp.esat.kuleuven.be/latex/kulemt/kulemt.pdf. A minimal working example&lt;br /&gt;
is provided below (inspired by the above manual).&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
\documentclass[master=eelt,masteroption=ei]{kulemt}&lt;br /&gt;
\setup{title={The best master thesis ever},&lt;br /&gt;
  author={First Author\and Second Author},&lt;br /&gt;
  promotor={Prof.\,dr.\,ir.\ Knows Better},&lt;br /&gt;
  assessor={Ir.\,Kn. Owsmuch\and K. Nowsrest},&lt;br /&gt;
  assistant={Ir.\ An~Assistent \and A.~Friend}}&lt;br /&gt;
&lt;br /&gt;
\begin{document}&lt;br /&gt;
\mainmatter&lt;br /&gt;
Test&lt;br /&gt;
\end{document}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that for some other masters, some other options might be&lt;br /&gt;
necessary, such as:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
\setup{&lt;br /&gt;
  translatedtitle={My title in English}, % in case of a Dutch master&lt;br /&gt;
  udc=621.3, % This is the udc number for the faculty of engineering science&lt;br /&gt;
  shortabstract={A short summary of the thesis},&lt;br /&gt;
}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Finding the TEXMFHOME ==&lt;br /&gt;
In case the default location for the TEXMFHOME as stated above does not work,&lt;br /&gt;
you can find the correct directory through command-line. In Linux and macOS,&lt;br /&gt;
look for an app called &amp;quot;Terminal&amp;quot;. In Windows, search for &amp;quot;cmd&amp;quot; using the start&lt;br /&gt;
menu. The program has a black, square logo.&lt;br /&gt;
&lt;br /&gt;
To find out the central location of installed packages, run the following&lt;br /&gt;
command:&lt;br /&gt;
 kpsewhich -var-value=TEXMFHOME&lt;br /&gt;
An example output would be:&lt;br /&gt;
 C:/Users/ULYSSIS/texmf&lt;br /&gt;
If you have found this folder, copy the entire &amp;quot;tex&amp;quot; directory from the&lt;br /&gt;
extracted kulemt-tds.zip to this location, as stated before. Create the folder&lt;br /&gt;
if needed.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
The kulemt package requires the memoir package. Make sure you have this package. We recommend installing the texlive-full package on Ubuntu. When you use the installer from [ftp://ftp.ulyssis.org/LaTeX-Workshop/installers/ our FTP server] for Windows or OS X/macOS, you will automatically have the entire LaTeX suite.&lt;/div&gt;</summary>
		<author><name>Travolter</name></author>
	</entry>
</feed>