Advertisement
Guest User

Anki Kanji card format

a guest
Feb 22nd, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.13 KB | None | 0 0
  1. THIS IS AN ANKI CARD TEMPLATE FOR KANJI/RTK, WITH 3 FONTS:
  2. - HGKyoukashotai, for learning what the kanji looks like when written
  3. - MSMincho, to keep track of differences between written kanji and their print equivalents
  4. - KanjiStrokeOrders, for... stroke order, duh.
  5.  
  6. Note that you need to copy-paste these fonts into your Anki collection.media folder and add an underscore to the 3 filenames to make sure Anki never deletes them during a media check.
  7.  
  8. This template and these settings will work on desktop and mobile.
  9.  
  10. HERE'S THE FRONT TEMPLATE:
  11.  
  12. <div style="text-align: left;"><span style="color:#339922;font-size: 22px;">{{Tags}}</span>{{#Number}}<span style="font-size":22px;">:</span>{{/Number}}<span style="color:#585858;font-size: 22px;">#{{Number}}</span><br><span style="font-size: 45px; font-family: Times New Roman">{{Keyword}}</span>{{#Def}}<br><span style="font-size:20px; font-family: Times New Roman">{{Def}}</span>{{/Def}}{{#Def}}<br>{{/Def}}{{#Reading}}<br><span style="font-size:27.5px; font-family: Times New Roman">{{Reading}}</span>{{/Reading}}
  13.  
  14. HERE'S THE STYLING:
  15.  
  16. .win .card {
  17.  font-size: 22px;
  18.  background-color:#FFFAF0;
  19.  color:#2A1B0A;
  20.  font-family: Times New Roman;
  21.  text-align:center;
  22. }
  23.  
  24. .mobile .card {
  25.  font-size: 22px;
  26.  background-color:#FFFAF0;
  27.  color:#2A1B0A;
  28.  font-family: Times New Roman;
  29.  text-align:center;
  30. }
  31.  
  32. @font-face { font-family: myfont;src: url('_HGRKK.ttc'); }
  33. @font-face { font-family: myfont2;src: url('_msmincho.ttc'); }
  34. @font-face { font-family: myfont3;src: url('_KanjiStrokeOrders.ttf'); }
  35.  
  36. .mobile .jp {
  37.  font-family: "myfont";
  38.  font-size: 100px;
  39. }
  40.  
  41. .win .jp {
  42.  font-family: "myfont";
  43.  font-size: 130px;
  44. }
  45.  
  46. .mobile .mc {
  47.  font-family: "myfont2";
  48.  font-size: 100px;
  49. }
  50.  
  51. .win .mc {
  52.  font-family: "myfont2";
  53.  font-size: 130px;
  54. }
  55.  
  56. .mobile .fk {
  57.  font-family: "myfont3";
  58.  font-size: 100px;
  59. }
  60.  
  61. .win .fk {
  62.  font-family: "myfont3";
  63.  font-size: 130px;
  64. }
  65.  
  66.  
  67. AND HERE'S THE BACK TEMPLATE:
  68.  
  69. {{FrontSide}}
  70.  
  71. <hr id=answer>
  72.  
  73. <span class=jp>{{漢字}}</span><span class=mc>{{漢字}}</span><span class=fk>{{漢字}}</span><br><br><span style="font-size: 25px; ">{{Story}}</span>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement