Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

This is how I would want AquilineTwo to look like when I type.

But that is not the case when I downloaded AquilineTwo from anywhere. (specifically from UrbanFonts.com)

Where can I download the ones from the picture, or what am I suppose to do?

share|improve this question
Welcome to TeX.SE. – Peter Grill Oct 7 '12 at 7:27
I'm afraid this question seems to be off-topic for this site. Is it related to TeX/LaTeX in any way? – doncherry Oct 7 '12 at 7:42

closed as off topic by lockstep, cgnieder, Stefan Kottwitz Oct 7 '12 at 9:18

Questions on TeX - LaTeX Stack Exchange are expected to relate to TeX, LaTeX or related typesetting systems within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

With pdflatex can use one of the usual calligraphic fonts of The LaTeX font catalogue, like Zapt Chancery:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{chancery}
\usepackage{lipsum}
\begin{document}
\Large
\section*{\Huge Lore Lipsum}
\raggedright
 \itshape \lipsum[1]
\end{document}

MWE

As alternative, you can use XeTeX or LuaTeX with any true type font available in your OS. For demonstration purposes, the MWE use the Anaktoria font, although is not similar to the font of the question:

\documentclass{article}
\usepackage{fontspec}
\setmainfont[Ligatures=TeX]{Anaktoria}
\usepackage{lipsum}
\begin{document}
\Large
\section*{\Huge Lore Lipsum}
\raggedright
 \itshape \lipsum[1]
\end{document}

MWE2

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.