pyeasyphd 0.3.13__py3-none-any.whl → 0.3.15__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyeasyphd might be problematic. Click here for more details.

Files changed (25) hide show
  1. pyeasyphd/data/templates/abbr_full/conferences.json +1 -0
  2. pyeasyphd/data/templates/abbr_full/journals.json +1 -0
  3. pyeasyphd/data/templates/abbr_full/keywords.json +1 -0
  4. pyeasyphd/main/basic_input.py +12 -12
  5. {pyeasyphd-0.3.13.dist-info → pyeasyphd-0.3.15.dist-info}/METADATA +1 -1
  6. {pyeasyphd-0.3.13.dist-info → pyeasyphd-0.3.15.dist-info}/RECORD +23 -22
  7. pyeasyphd/data/Templates/TEX/eisvogel.beamer +0 -700
  8. pyeasyphd/data/Templates/TEX/eisvogel.latex +0 -1040
  9. /pyeasyphd/data/{Templates/CSL → templates/csl}/apa-no-ampersand.csl +0 -0
  10. /pyeasyphd/data/{Templates/CSL → templates/csl}/apa.csl +0 -0
  11. /pyeasyphd/data/{Templates/CSL → templates/csl}/ieee.csl +0 -0
  12. /pyeasyphd/data/{Templates/TEX → templates/tex}/Article.tex +0 -0
  13. /pyeasyphd/data/{Templates/TEX → templates/tex}/Article_Header.tex +0 -0
  14. /pyeasyphd/data/{Templates/TEX → templates/tex}/Article_Tail.tex +0 -0
  15. /pyeasyphd/data/{Templates/TEX → templates/tex}/Beamer_Header.tex +0 -0
  16. /pyeasyphd/data/{Templates/TEX → templates/tex}/Beamer_Tail.tex +0 -0
  17. /pyeasyphd/data/{Templates/TEX → templates/tex}/Style.tex +0 -0
  18. /pyeasyphd/data/{Templates/TEX → templates/tex}/TEVC_Header.tex +0 -0
  19. /pyeasyphd/data/{Templates/TEX → templates/tex}/TEVC_Tail.tex +0 -0
  20. /pyeasyphd/data/{Templates/TEX → templates/tex}/eisvogel.tex +0 -0
  21. /pyeasyphd/data/{Templates/TEX → templates/tex}/math.tex +0 -0
  22. /pyeasyphd/data/{Templates/TEX → templates/tex}/math_commands.tex +0 -0
  23. /pyeasyphd/data/{Templates/TEX → templates/tex}/nextaimathmacros.sty +0 -0
  24. {pyeasyphd-0.3.13.dist-info → pyeasyphd-0.3.15.dist-info}/WHEEL +0 -0
  25. {pyeasyphd-0.3.13.dist-info → pyeasyphd-0.3.15.dist-info}/licenses/LICENSE +0 -0
@@ -37,7 +37,7 @@ class BasicInput(BasicInputInPyBibtexer):
37
37
  super().__init__(options)
38
38
 
39
39
  current_dir = os.path.dirname(os.path.abspath(__file__))
40
- self._path_templates = os.path.join(os.path.dirname(current_dir), "data", "Templates")
40
+ self._path_templates = os.path.join(os.path.dirname(current_dir), "data", "templates")
41
41
 
42
42
  # main
43
43
  self._initialize_pandoc_md_to(options)
@@ -54,14 +54,14 @@ class BasicInput(BasicInputInPyBibtexer):
54
54
  csl_name = options.get("csl_name", "apa-no-ampersand")
55
55
  if not isinstance(csl_name, str):
56
56
  csl_name = "apa-no-ampersand"
57
- self.full_csl_style_pandoc = os.path.join(self._path_templates, "CSL", f"{csl_name}.csl")
57
+ self.full_csl_style_pandoc = os.path.join(self._path_templates, "csl", f"{csl_name}.csl")
58
58
  if not os.path.exists(self.full_csl_style_pandoc):
59
- self.full_csl_style_pandoc = os.path.join(self._path_templates, "CSL", "apa-no-ampersand.csl")
59
+ self.full_csl_style_pandoc = os.path.join(self._path_templates, "csl", "apa-no-ampersand.csl")
60
60
 
61
- self.full_tex_article_template_pandoc = os.path.join(self._path_templates, "TEX", "eisvogel.latex")
62
- self.full_tex_beamer_template_pandoc = os.path.join(self._path_templates, "TEX", "eisvogel.beamer")
61
+ self.full_tex_article_template_pandoc = os.path.join(self._path_templates, "tex", "eisvogel.latex")
62
+ self.full_tex_beamer_template_pandoc = os.path.join(self._path_templates, "tex", "eisvogel.beamer")
63
63
 
64
- self.article_template_tex = self._try_read_list("TEX", "Article.tex")
64
+ self.article_template_tex = self._try_read_list("tex", "Article.tex")
65
65
 
66
66
  def _initialize_python_run_tex(self, options: Dict[str, Any]) -> None:
67
67
  """Initialize Python LaTeX processing configuration.
@@ -69,12 +69,12 @@ class BasicInput(BasicInputInPyBibtexer):
69
69
  Args:
70
70
  options (Dict[str, Any]): Configuration options.
71
71
  """
72
- self.article_template_header_tex = self._try_read_list("TEX", "Article_Header.tex")
73
- self.article_template_tail_tex = self._try_read_list("TEX", "Article_Tail.tex")
74
- self.beamer_template_header_tex = self._try_read_list("TEX", "Beamer_Header.tex")
75
- self.beamer_template_tail_tex = self._try_read_list("TEX", "Beamer_Tail.tex")
76
- self.math_commands_tex = self._try_read_list("TEX", "math_commands.tex")
77
- self.usepackages_tex = self._try_read_list("TEX", "Style.tex")
72
+ self.article_template_header_tex = self._try_read_list("tex", "Article_Header.tex")
73
+ self.article_template_tail_tex = self._try_read_list("tex", "Article_Tail.tex")
74
+ self.beamer_template_header_tex = self._try_read_list("tex", "Beamer_Header.tex")
75
+ self.beamer_template_tail_tex = self._try_read_list("tex", "Beamer_Tail.tex")
76
+ self.math_commands_tex = self._try_read_list("tex", "math_commands.tex")
77
+ self.usepackages_tex = self._try_read_list("tex", "Style.tex")
78
78
 
79
79
  # handly preamble
80
80
  self.handly_preamble = options.get("handly_preamble", False)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyeasyphd
3
- Version: 0.3.13
3
+ Version: 0.3.15
4
4
  Summary: pyeasyphd
5
5
  License: GPL-3.0-or-later
6
6
  License-File: LICENSE
@@ -1,25 +1,26 @@
1
1
  pyeasyphd/.python-version,sha256=Auc1s9_hwygz61ULf_j_oX9fK8P6HnuuYaj1o4g845g,5
2
2
  pyeasyphd/Main.sublime-menu,sha256=TTGNg9MzL5_uz4SXvs2pTdQQNxk9dSJmbUkPjujfQls,1554
3
3
  pyeasyphd/__init__.py,sha256=tEypJy-Kmj6Oxpjh767NjkH5Ct0JF1Nhiw3D6-7I4E8,260
4
- pyeasyphd/data/Templates/CSL/apa-no-ampersand.csl,sha256=ndFDG38PUNyGYpvfGqx_KzoSIs0DXA4w0GHG3MgFV7E,86859
5
- pyeasyphd/data/Templates/CSL/apa.csl,sha256=S5OAu8zlZqzubySyR5c2FYDEzkTyuC9aRaJJlsygM8M,84591
6
- pyeasyphd/data/Templates/CSL/ieee.csl,sha256=SzU0l89ymSCtmpugSoz2S6uM3_GHvibFZwZewn7WVEA,17413
7
- pyeasyphd/data/Templates/TEX/Article.tex,sha256=M-vMXiHc2ncOTahtuY40s3flr2Ojo_-C8DDvLExMKbA,1264
8
- pyeasyphd/data/Templates/TEX/Article_Header.tex,sha256=41Wv1BcQMmvh5peKTPh3uK_tm7mOSBnrFqkO0JzlXKU,949
9
- pyeasyphd/data/Templates/TEX/Article_Tail.tex,sha256=1m7z4T6h8B8ylw3_4Q8_EOgzhyRRVSHgHrGZ6b5ut4k,35
10
- pyeasyphd/data/Templates/TEX/Beamer_Header.tex,sha256=AWzgGmosZBX-YRynsbCChu6iF97FKDp3iU1OvBWeoC4,3692
11
- pyeasyphd/data/Templates/TEX/Beamer_Tail.tex,sha256=88F75V0B8mP9naOEzM1S8PuEtYPdpZJAwxFQVVPP5K0,211
12
- pyeasyphd/data/Templates/TEX/Style.tex,sha256=CK_Uxf3MEKRhxWC0OnipkHrgQIO_I5CHPBQ_T5wXvog,9726
13
- pyeasyphd/data/Templates/TEX/TEVC_Header.tex,sha256=WPFIJLQNRsEcr5jxSw8rpc2gXJrMLie273yfwgEXAOU,1579
14
- pyeasyphd/data/Templates/TEX/TEVC_Tail.tex,sha256=FBoefRJsnJrH1-eRZfF68qu_lHjwYZhj-iFWBWfV4tw,86
15
- pyeasyphd/data/Templates/TEX/eisvogel.beamer,sha256=MMJ5pdxyyCGVpripIfc3sEtvkoB1n69KOm2knPKtbaA,19811
16
- pyeasyphd/data/Templates/TEX/eisvogel.latex,sha256=vxJKHEd7xPD3ie0DyeFO7Pp_-BofTBRM26XCqowXFdc,30060
17
- pyeasyphd/data/Templates/TEX/eisvogel.tex,sha256=9bDMPfUFjaHQZPCnYLwjsw5DfBtD04uzwfxvQa9nWuE,30748
18
- pyeasyphd/data/Templates/TEX/math.tex,sha256=y_8AJzjmCCX6xmZQ_yCcABqMLqufOeh54pafTvNyUIM,11030
19
- pyeasyphd/data/Templates/TEX/math_commands.tex,sha256=6ZQOletBnFRA6q6fU8TDVN4c9hDEdbmZuKnJgkgzq48,41513
20
- pyeasyphd/data/Templates/TEX/nextaimathmacros.sty,sha256=iF0jyABkoPUY_XA-lPkvZSlblFuWLX9ie82gRqY0Fks,41644
4
+ pyeasyphd/data/templates/abbr_full/conferences.json,sha256=yj0WO6sFU4GCciYUBWjzvvfqrBh869doeOC2Pp5EI1Y,3
5
+ pyeasyphd/data/templates/abbr_full/journals.json,sha256=yj0WO6sFU4GCciYUBWjzvvfqrBh869doeOC2Pp5EI1Y,3
6
+ pyeasyphd/data/templates/abbr_full/keywords.json,sha256=yj0WO6sFU4GCciYUBWjzvvfqrBh869doeOC2Pp5EI1Y,3
7
+ pyeasyphd/data/templates/csl/apa-no-ampersand.csl,sha256=ndFDG38PUNyGYpvfGqx_KzoSIs0DXA4w0GHG3MgFV7E,86859
8
+ pyeasyphd/data/templates/csl/apa.csl,sha256=S5OAu8zlZqzubySyR5c2FYDEzkTyuC9aRaJJlsygM8M,84591
9
+ pyeasyphd/data/templates/csl/ieee.csl,sha256=SzU0l89ymSCtmpugSoz2S6uM3_GHvibFZwZewn7WVEA,17413
10
+ pyeasyphd/data/templates/tex/Article.tex,sha256=M-vMXiHc2ncOTahtuY40s3flr2Ojo_-C8DDvLExMKbA,1264
11
+ pyeasyphd/data/templates/tex/Article_Header.tex,sha256=41Wv1BcQMmvh5peKTPh3uK_tm7mOSBnrFqkO0JzlXKU,949
12
+ pyeasyphd/data/templates/tex/Article_Tail.tex,sha256=1m7z4T6h8B8ylw3_4Q8_EOgzhyRRVSHgHrGZ6b5ut4k,35
13
+ pyeasyphd/data/templates/tex/Beamer_Header.tex,sha256=AWzgGmosZBX-YRynsbCChu6iF97FKDp3iU1OvBWeoC4,3692
14
+ pyeasyphd/data/templates/tex/Beamer_Tail.tex,sha256=88F75V0B8mP9naOEzM1S8PuEtYPdpZJAwxFQVVPP5K0,211
15
+ pyeasyphd/data/templates/tex/Style.tex,sha256=CK_Uxf3MEKRhxWC0OnipkHrgQIO_I5CHPBQ_T5wXvog,9726
16
+ pyeasyphd/data/templates/tex/TEVC_Header.tex,sha256=WPFIJLQNRsEcr5jxSw8rpc2gXJrMLie273yfwgEXAOU,1579
17
+ pyeasyphd/data/templates/tex/TEVC_Tail.tex,sha256=FBoefRJsnJrH1-eRZfF68qu_lHjwYZhj-iFWBWfV4tw,86
18
+ pyeasyphd/data/templates/tex/eisvogel.tex,sha256=9bDMPfUFjaHQZPCnYLwjsw5DfBtD04uzwfxvQa9nWuE,30748
19
+ pyeasyphd/data/templates/tex/math.tex,sha256=y_8AJzjmCCX6xmZQ_yCcABqMLqufOeh54pafTvNyUIM,11030
20
+ pyeasyphd/data/templates/tex/math_commands.tex,sha256=6ZQOletBnFRA6q6fU8TDVN4c9hDEdbmZuKnJgkgzq48,41513
21
+ pyeasyphd/data/templates/tex/nextaimathmacros.sty,sha256=iF0jyABkoPUY_XA-lPkvZSlblFuWLX9ie82gRqY0Fks,41644
21
22
  pyeasyphd/main/__init__.py,sha256=Pv-7359vftMgw3Wi_GuDy99K0TcY6hVwLkFFip774x8,224
22
- pyeasyphd/main/basic_input.py,sha256=w_4sHS-gOmk7j5dDKQjU0fxXLO2eM3UkvR7o1urgeAg,4607
23
+ pyeasyphd/main/basic_input.py,sha256=MttXPknpcw1PVucKvYKDVRnOXJrbi0UdGRWVvlURuvw,4607
23
24
  pyeasyphd/main/pandoc_md_to.py,sha256=5wRpuf4_ZR9XIRI4HkTcXPiXDwVpdKP3H1Eaf_D2yYQ,16974
24
25
  pyeasyphd/main/python_run_md.py,sha256=cqleE-kBGyYdUZIdT3zU58gxDK6oHiRmfvtGEHLG4sA,13923
25
26
  pyeasyphd/main/python_run_tex.py,sha256=9Syu8qRjPXN3gEabfRUWxwTFBm_izIcB4yFhsz3QNs0,7672
@@ -48,7 +49,7 @@ pyeasyphd/tools/search/search_keywords.py,sha256=YCurXuoYeU1ftve0cb8Hcn_g2FXCXf7
48
49
  pyeasyphd/tools/search/search_writers.py,sha256=Dz6D8m17R7x8NT7_PCjwmzlq29AfUz-N6sjyCguDTo4,15702
49
50
  pyeasyphd/tools/search/utils.py,sha256=bo7xtIZu31dQvjol1lwyWq1t6ldbw28oondwK8VbAqk,7562
50
51
  pyeasyphd/utils/utils.py,sha256=kWxzzgNwz77K9Q7j-RKTaoPpxqiVLVtaBMMhLuEenwE,3128
51
- pyeasyphd-0.3.13.dist-info/METADATA,sha256=7Mi0Jur8BpKP1FKCXnuM1Sxek5yDsXdGVUG4gYUQN7U,986
52
- pyeasyphd-0.3.13.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
53
- pyeasyphd-0.3.13.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
54
- pyeasyphd-0.3.13.dist-info/RECORD,,
52
+ pyeasyphd-0.3.15.dist-info/METADATA,sha256=PYIslupHHFzfoE2xbhCpqN9RfJ49rlr-nKTudJZBjDA,986
53
+ pyeasyphd-0.3.15.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
54
+ pyeasyphd-0.3.15.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
55
+ pyeasyphd-0.3.15.dist-info/RECORD,,