1
1

See the title.

This question is marked "community wiki".

asked 23 Dec '11, 17:55

Martin%20Dybdal's gravatar image

Martin Dybdal ♦♦
1.1k123282
accept rate: 69%

edited 19 Jan '12, 12:59


Here: http://www.math.ku.dk/~m00cha/

On linux it can be installed with:

# Download and install tex-files
wget http://www.math.ku.dk/~m00cha/ku-forside.zip
unzip ku-forside.zip -d /usr/local/share/texmf/tex/latex

# Convert a problematic file (should not be needed on iso-8859-1 systems)
ORIG=/usr/local/share/texmf/tex/latex/ku-forside/ku-forside.sty
TMP=`mktemp`
iconv -f iso-8859-1 $KUFIL -o $TMP
mv -f $TMP $ORIG

# Update tex-cache
texhash

Usage-examples are in the link.

link

answered 06 Jan '12, 16:18

IdolfHatler's gravatar image

IdolfHatler
3121111
accept rate: 75%

edited 06 Jan '12, 20:01

Instead of using temporary files, consider using sponge:

uconv -f iso-8859-1 ku-forside.sty | sponge ku-forside.sty

sponge slurps anything from stdin and outputs it into the specified file when stdin is closed.

(27 May, 19:53) runejuhl runejuhl's gravatar image

I recommend downloading ku-forside.zip from http://www.math.ku.dk/~m00cha/, finding the necessary images within it and using the images directly. This only adds approximately five lines to your .tex file and no dependencies outside your TeX installation. Also, you don't need to change any encoding.

For example, if I want to use the old SCIENCE graphics in English, I select nat-farve.pdf and nat-en.pdf and copy them into my working directory. Or if I want to use the red KU logo in Danish, I select ku-farve.pdf and ku-da.pdf instead.

Below is an example of the only extracts of the ku-forside package that actually need to be used. Pay attention to the three lines that begin with \AddToShipoutPicture. You need to include the package eso-pic before this works. These images might not be compatible with your margins, so one way to fix this is to set the margins using the geometry package as below. Another way is to use \includegraphics*[width=\pagewidth,height=\pageheight,keepaspectratio]{...}.

\documentclass[11pt]{article}
\usepackage[a4paper, hmargin={2.8cm, 2.8cm}, vmargin={2.5cm, 2.5cm}]{geometry}
\usepackage{eso-pic} % \AddToShipoutPicture
\usepackage{graphicx} % \includegraphics

\author{\Large{Simon Shine} \\ \texttt{shine@diku.dk}}

\title{
  \vspace{3cm}
  \Huge{Very Interesting Title} \\
  \Large{Somewhat Interesting Subtitle}
}

\date{June 6, 2013}

\begin{document}

\AddToShipoutPicture*{\put(0,0){\includegraphics*[viewport=0 0 700 600]{nat-farve}}}
\AddToShipoutPicture*{\put(0,602){\includegraphics*[viewport=0 600 700 1600]{nat-farve}}}
\AddToShipoutPicture*{\put(0,0){\includegraphics*{nat-en}}}

\clearpage\maketitle
\thispagestyle{empty}

\newpage

\end{document}
link
This answer is marked "community wiki".

answered 06 Jun '13, 12:38

Simon%20Shine's gravatar image

Simon Shine ♦
384310
accept rate: 27%

edited 06 Jun '13, 13:09

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×122
×12
×6

Asked: 23 Dec '11, 17:55

Seen: 3,622 times

Last updated: 27 May, 19:53

powered by OSQA