Search found 2 matches

by Skazz
Thu Dec 10, 2009 12:24 am
Forum: Fonts & Character Sets
Topic: Changing Font Type Within Tables
Replies: 6
Views: 29820

Changing Font Type Within Tables

Hi workerbee,

You could declare a new environment, which changes the font and then calls the standard tabular environment. e.g.
\documentclass{article}
\usepackage[utf8]{inputenc}

\newenvironment{tttabular}[1]%
{\ttfamily \begin{tabular}{#1}}%
{\end{tabular}}

\begin{document}

\begin{tttabular ...
by Skazz
Wed Dec 09, 2009 7:49 pm
Forum: Fonts & Character Sets
Topic: Using True Type fonts in LaTeX
Replies: 0
Views: 1989

Using True Type fonts in LaTeX

Dear friends of LaTeX

I'm trying to design a scientific Poster in Latex. Due to the new corporate design of the university I have to obey some quite restrictive rules for the Layout. Among others the fonts, which only exist as *.ttf files.

I'm using some packages e.g. textpos, which are afaik not ...