Guest User

Untitled

a guest
Aug 20th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. documentclass{article}
  2. usepackage[sf,scale=0.95]{libertine} % sets biolinum as sf only
  3. usepackage{ebgaramond}
  4. begin{document}
  5. section*{sffamilymdseries Lorem Ipsum Redux}
  6. Cras viverra metus rhoncus sem. textsf{Nulla et lectus vestibulum} urna fringilla ultrices.
  7. end{document}
  8.  
  9. usepackage[sf,scaled=0.9]{quattrocento}
  10. ...
  11. section*{sffamily Lorem Ipsum Redux}
  12.  
  13. % !TEX TS-program = lualatex
  14. documentclass{article}
  15. usepackage{fontspec}
  16. setmainfont{EB Garamond} % EB Garamond is the "roman" font
  17. defaultfontfeatures{Scale=MatchLowercase}
  18.  
  19. %% Macro to load sans-serif font and print several test strings
  20. newcommandfourlines[1]{%
  21. setsansfont{#1}
  22. texttt{#1}
  23.  
  24. The quick brown fox jumps over the lazy dog.
  25.  
  26. textsf{The quick brown fox jumps over the lazy dog.}
  27.  
  28. The textsf{quick} brown textsf{fox} jumps textsf{over} the textsf{lazy} dog.}
  29.  
  30. begin{document}
  31.  
  32. fourlines{Palatino Sans Com}
  33.  
  34. medskip
  35. fourlines{Optima nova LT Pro}
  36.  
  37. medskip
  38. fourlines{Linux Biolinum O}
  39.  
  40. medskip
  41. fourlines{Gill Sans MT}
  42.  
  43. medskip
  44. fourlines{Helvetica Neue}
  45.  
  46. medskip
  47. fourlines{Myriad Pro}
  48.  
  49. medskip
  50. fourlines{Calibri}
  51. end{document}
  52.  
  53. % !TEX TS-program = lualatex
  54. documentclass{article}
  55. usepackage{fontspec}
  56. setmainfont{EB Garamond} % EB Garamond is the "roman" font
  57. defaultfontfeatures{Scale=MatchLowercase}
  58. setsansfont{EauTestText}
  59.  
  60. begin{document}
  61. The quick brown fox jumps over the lazy dog.
  62.  
  63. textsf{The quick brown fox jumps over the lazy dog.}
  64.  
  65. The textsf{quick} brown textsf{fox} jumps textsf{over} the textsf{lazy} dog.
  66.  
  67. textsc{The quick brown fox jumps over the lazy dog.}
  68.  
  69. textsf{textsc{The quick brown fox jumps over the lazy dog.}}
  70. end{document}
Add Comment
Please, Sign In to add comment