Text FormattingLaTeX symbols for biographical data

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
dennis.walter
Posts: 4
Joined: Tue Jun 29, 2010 12:32 pm

LaTeX symbols for biographical data

Post by dennis.walter »

When providing biographical data about a person, it is common to use a star (*) and a cross in front of the dates of birth and death. I wonder which symbols one is supposed to use for this purpose in LaTeX's Computer/Latin Modern fonts. Are there any pre-defined commands? I couldn't find them in the comprehensive LaTeX symbol list...

Thanks!

Recommended reading 2024:

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

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

LaTeX symbols for biographical data

Post by gmedina »

Hi,
dennis.walter wrote:...Are there any pre-defined commands? I couldn't find them in the comprehensive LaTeX symbol list...
Did you try these? (all present in the Comprehensive LaTeX Symbol List):

Code: Select all

\documentclass{article}
\usepackage{bbding}

\begin{document}

\dag\Cross

\FiveStarOpen\SixStar

\end{document}
or these?:

Code: Select all

\documentclass{article}
\usepackage{marvosym}
\usepackage{pifont,MnSymbol}

\begin{document}

\Cross\ding{73}$\largestar$

\end{document}
If none of the above symbols satisfy your requirements, please attach an image (or provide a link) showing the exact symbols that you are trying to get.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
dennis.walter
Posts: 4
Joined: Tue Jun 29, 2010 12:32 pm

Re: LaTeX symbols for biographical data

Post by dennis.walter »

Oh yes, I did try them. I think the lines in \Cross are slightly too thick. And \dag, as the name suggests, produces a dagger, not a cross.

I like the cross that is used on Wikipedia. (E.g. http://de.wikipedia.org/wiki/Winston_Churchill) There it's just a Unicode character that apparently is present in my standard browser font.

But thank you for your suggestions!
Post Reply