Re: Aanhalingstekens
Wybo Dekker <wybo-qWit8jRvyhVmR6Xm/[email protected]>
| Newsgroups | gmane.comp.tex.dutch |
|---|---|
| Message-ID | <[email protected]> |
On 2012-04-19 10:48, Andrea de Leeuw van Weenen wrote: > Beste allemaal, > > Ik ben bezig met een artikel waarin ik een aantal citaten in diverse talen > wil opnemen. Ik wil deze citaten heel precies hebben en dus ook de vormen > van de diverse aanhalingstekens die gebruikt worden overnemen. In welk > font kan ik die vinden? Het gaat o.a. om de lage dubbele aanhalingstekens > , die er uitzien als 2 komma's, en de franse guillemets? unicode: double quote opening 0x201e closing 0x201d guillemet opening 0x00ab closing 0x00bb bijvoorbeeld in lmmono12-regular.otf of texgyreadventor-regular.ott of AntykwaTorunska-Regular.otf voorbeeld hierbij. Wel in xelatex... -- Wybo _______________________________________________ TeX-NL mailing list [email protected] http://www.ntg.nl/cgi-bin/mailman/listinfo/tex-nl
quotes.pdf
(application/pdf, 10.5 KB) - not displayed
quotes.tex
(text/x-tex, 549 B)
%!xelatex
\documentclass[12pt]{article}
\usepackage[papersize={100mm,100mm},margin=7mm]{geometry}
\parindent0pt
\pagestyle{empty}
\usepackage{fontspec}
\setmainfont[Mapping=tex-text]{Times New Roman}
\defaultfontfeatures{Scale=MatchLowercase,Numbers=OldStyle,Mapping=tex-text}
\newcommand\Quotes[1]{%
\fontspec{Bitstream Charter}
\message{----------#1----------}
\fontspec{#1} #1: „test” «test»
\\[2ex]
}
\begin{document}
\Quotes{LMRoman12-Regular}
\Quotes{TeXGyreAdventor-Regular}
\Quotes{AntykwaTorunska-Regular}
\end{document}