3

How to write this logo in Latex? I am working on it, but could not get it.enter image description here

Ahmad
  • 557
  • 2
  • 6
  • 11

2 Answers2

3

Run with xelatex or lualatex

\documentclass{article}
\usepackage{libertine}
\begin{document}
\Huge
\char57391 ikipedia
\end{document}

enter image description here

3

Same, run with xelatex. Includes small capitals "ikipedi" and capital "W" and "A".

\documentclass{article}
\usepackage{libertine}
\begin{document}
\Huge
\char57391\sc{ikipedi}A
\end{document}
FSJ963
  • 529
  • 6
    \sc doesn't take an argument, so the shape would persist beyond the intended scope. use either \textsc{...} or {\scshape ...}. – barbara beeton Nov 24 '14 at 20:50
  • Sir , this is not running in simple Latex and in beamer – Ahmad Nov 24 '14 at 20:57
  • @Ahmad Correct, that's why you need to use xelatex or lualatex, as mentioned in the answer. – Sverre Nov 24 '14 at 20:58
  • But sir my whole document is in simple latex . How can I include this? – Ahmad Nov 24 '14 at 21:00
  • @Ahmad The special 'W' in the Wikipedia logo comes from the Linux Libertine font. The LaTeX fonts for Linux Libertine don't include this 'W', so you need to use the .otf fonts - and then you need to compile with xelatex or lualatex. – Sverre Nov 24 '14 at 21:04
  • Is there any way to adjust this xelatex , because I cannot add any picture. – Ahmad Nov 24 '14 at 21:16
  • 1
    @Ahmad: Your document will probably work fine as is if you just use xelatex instead of pdflatex. Try it. If you have problems, see http://tex.stackexchange.com/questions/2984/frequently-loaded-packages-differences-between-pdflatex-and-xelatex – Nick Matteo Nov 24 '14 at 21:17