Fonts & Character SetsFont style other then normal font of document

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
sheenshahid
Posts: 20
Joined: Fri Jan 24, 2020 10:31 am

Font style other then normal font of document

Post by sheenshahid »

I want to write the name of univ in this style (See attached figure below) which is change other then style of the document (which is in times new roman). how its possible
Capture.JPG
Capture.JPG (11.08 KiB) Viewed 6629 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

Font style other then normal font of document

Post by Ijon Tichy »

With LuaLaTeX or XeLaTeX and fontspec you can easily load other fonts.
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. :cry:
sheenshahid
Posts: 20
Joined: Fri Jan 24, 2020 10:31 am

Font style other then normal font of document

Post by sheenshahid »

but i m using Latex. Plz guide completely.
User avatar
Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

Font style other then normal font of document

Post by Ijon Tichy »

LuaLaTeX and XeLaTeX are LaTeX with TeX engine LuaTeX or XeTeX, like PDFLaTeX is LaTeX with TeX engine PDFTeX.

Usage of other fonts is possible with PDFLaTeX too, but then you need a font installation package. Using TTF or OTF fonts with XeLaTeX or LuaLaTeX is much easier.
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. :cry:
sheenshahid
Posts: 20
Joined: Fri Jan 24, 2020 10:31 am

Font style other then normal font of document

Post by sheenshahid »

Dear I m new to latex . I m still unable what to do ?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10319
Joined: Mon Mar 10, 2008 9:44 pm

Font style other then normal font of document

Post by Stefan Kottwitz »

Hi sheenshahid,

welcome to the forum!
sheenshahid wrote:Plz guide completely.
Complete guidance with much effort while you shorten your own effort? "Plz" and "univ" and no own code. I just guess that may not work.

We usually like to talk about LaTeX, fix errors in 5 minutes or give advice in 5 minutes, as we enjoy talking here. Sometimes we spend more time in a serious conversation. Perhaps let us know the font you need to use, for example.

Stefan
LaTeX.org admin
User avatar
Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

Font style other then normal font of document

Post by Ijon Tichy »

Indeed, I do not know the font you want to use. But here is a Infominimal working example that shows, how to use fontspec and either LuaLaTeX or XeLaTeX to load and use additional fonts.
% Important: You have to use LuaLaTeX or XeLaTeX instead of PDFLaTeX zu
%            compile this file!
\documentclass{article}

\usepackage{fontspec}
\usepackage{blindtext}
\usepackage[english]{babel}

\setmainfont{TeX Gyre Termes}% Use the Times clone TeX Gyre Termes as main font.
\newfontfamily{\otherfamily}{TeX Gyre Chorus}% Load TeX Gyre Chorus as an additional font family.

\begin{document}
\begin{titlepage}
  {\otherfamily This is the name of the university.}
  \vfill
  {\Huge\bfseries The Name of the Game\par}
  \bigskip
  {\large\bfseries Me and Boby McGee\par}
  \vfill\vfill\vfill
\end{titlepage}
\tableofcontents
\blinddocument
\end{document}
Image

I've used the Times clone TeX Gyre Termes as main document font and loaded TeX Gyre Chorus (a font bases in Chancery Italic) as additional font. But you can use any other font, you've installed correctly. See the fontspec manual about how to alternatively load fonts by file name (and even path), if loading per name fails (e.g. because the font has not been installed correctly).
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. :cry:
User avatar
Stefan Kottwitz
Site Admin
Posts: 10319
Joined: Mon Mar 10, 2008 9:44 pm

Font style other then normal font of document

Post by Stefan Kottwitz »

Thanks Ijon, very nice! The example works on my Mac with randomly chosen fonts.

Stefan
LaTeX.org admin
sheenshahid
Posts: 20
Joined: Fri Jan 24, 2020 10:31 am

Font style other then normal font of document

Post by sheenshahid »

Dear Stephan
Thanks for ur reply.
The name of this font is " old English " , which I noted from Microsoft word. I have to write just name of my univ in this old English font style .
Regards
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Font style other then normal font of document

Post by Johannes_B »

The most fast and most easy way for you seems to be writing it in Word and making a screenshot.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply