Fonts & Character Sets ⇒ winfonts | Installation in a local TeXmf Tree
winfonts | Installation in a local TeXmf Tree
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
gayathrivishy
- Posts: 3
- Joined: Sat Dec 22, 2012 10:21 am
winfonts | Installation in a local TeXmf Tree
http://ctan.imsc.res.in/fonts/winfonts/README
1. First create a new folder in C:
C:\Programfiles\Texmf
2. Then for some reasons I was not able to unzip the contents directly to c:\programfiles\texmf. So I unzipped that to my desktop and there were 4 folders named doc, fonts,tex and ttf2ttm
3. then copied all these 4 folders to c:\programfiles\texmf
4. Then go to command prompt. go to c:\programfiles(CD.. will change the directory)
5. type in initexmf --edit-config-file udpmap
6. A notepad will open automatically. Type in Map winfonts.map
7.Save the file and close the notepad.
8.Then again in the command prompt type in initexmf -u
9. This will take few seconds to update
10. Finally go t START->ALL PROGRAMS->MIKTEX 2.9->MAINTENANCE->SETTINGS->ROOTS
11.Select the second TAB ROOTS. There down if you see there is an option called ADD. Click and select c:\programfiles\texmf and click apply.
12. Then go to first TAB in ROOTS which is GENERAL and click REFRESH FNDB AND UPDATE FORMATS.
that's it. now you can compile with winfonts. same can be done for any fonts.
try this code
Code: Select all
\documentclass{article}
\usepcakge[T1]{fontenc}
\usepcakge{winfonts}
\begin{document}
\fontfamily{arial}\selectfont Arial \normalfont\\
\fontfamily{times-ttf}\selectfont times \normalfont\\
\end{document}-
stallion_h1
- Posts: 4
- Joined: Tue Feb 26, 2013 9:39 pm
winfonts | Installation in a local TeXmf Tree
Code: Select all
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{winfonts}
\fontfamily{trebuchet}\selectfont
\begin{document}
abcdefg
\end{document}Did I miss something? Or something is missing with the steps you gave?
Thanks.
- Stal
-
gayathrivishy
- Posts: 3
- Joined: Sat Dec 22, 2012 10:21 am