Fonts & Character Sets ⇒ Need to identify font in given image
Need to identify font in given image
I have only worked with readymade templates before and have no idea how to.
[img]pdfsample.png[/img]
- Attachments
-
- pdfsample.png (49.01 KiB) Viewed 5182 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Need to identify font in given image
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Need to identify font in given image
Code: Select all
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\usepackage[explicit]{titlesec}
\usepackage{array, graphicx} \usepackage[tracking=true]{microtype}
\usepackage{fourier, erewhon} \usepackage{lipsum}% just to generate text for the example
\titleformat{\chapter}[display]{\centering\bfseries\Huge\lsstyle}%
{\titlerule[1.5pt]\vskip1ex\scalebox{1}[1.2]{\thechapter}\\[-1ex]\rule{5cm}{0.5pt}}{0ex}%
{#1\endgraf\titlerule\vskip2pt\titlerule[1.5pt]}
\titleformat{\section}[block]{\bfseries\LARGE}{}{0em}{\noindent\begin{tabular}{@{}ll@{}}\thesection & \MakeUppercase{#1}\\[-0.1ex]\hline\end{tabular}}
\begin{document}
\setcounter{chapter}{10}
\chapter{Green Technology and\\Green Business}
\lipsum[3]
\section{Green Business or Sustainable Business}
\lipsum[4]
\end{document}
Stefan