meta icon indicating copy to clipboard operation
meta copied to clipboard

Bugs and feature requests related to latex

Open AakashGfude opened this issue 5 years ago • 7 comments

Putting together a list of issues/discussions related to latex in ebp repos here. Which will help us get a holistic view, possible approaches, and tracking progress(the list is in progress).

Thie list below contains issues reported in other ebp repositories, not copying the ones reported in - https://github.com/executablebooks/sphinx-jupyterbook-latex/issues

The primary place to implement these will be here https://github.com/executablebooks/sphinx-jupyterbook-latex, wherever possible.

TOC:

  1. https://github.com/executablebooks/meta/discussions/167
  2. https://github.com/executablebooks/jupyter-book/issues/546

Style/template:

  1. https://github.com/executablebooks/meta/discussions/164
  2. https://github.com/executablebooks/jupyter-book/issues/904
  3. https://github.com/executablebooks/jupyter-book/issues/1497

Preamble:

  1. https://github.com/executablebooks/jupyter-book/issues/960
  2. https://github.com/executablebooks/jupyter-book/issues/848

Rendering/fonts :

  1. https://github.com/executablebooks/meta/discussions/160
  2. https://github.com/executablebooks/jupyter-book/issues/1478
  3. https://github.com/executablebooks/jupyter-book/issues/1223
  4. https://github.com/executablebooks/jupyter-book/issues/1202

Build:

  1. https://github.com/executablebooks/jupyter-book/issues/991
  2. https://github.com/executablebooks/jupyter-book/issues/1425
  3. https://github.com/executablebooks/jupyter-book/issues/1318 (windows)
  4. https://github.com/executablebooks/jupyter-book/issues/1100

Docs:

  1. https://github.com/executablebooks/jupyter-book/issues/1489

Misc

  1. https://github.com/executablebooks/jupyter-book/issues/1429

AakashGfude avatar Oct 28 '20 00:10 AakashGfude

Thanks for opening your first issue here! Engagement like this is essential for open source projects! :hugs:
If you haven't done so already, check out EBP's Code of Conduct. Also, please try to follow the issue template as it helps other community members to contribute more effectively.
If your issue is a feature request, others may react to it, to raise its prominence (see Feature Voting).
Welcome to the EBP community! :tada:

welcome[bot] avatar Oct 28 '20 00:10 welcome[bot]

@AakashGfude thanks for putting this together -- I would recommend we move each of these groups and make them separate issues in jupyterbook-latex as that is where we plan to solve many of these issues right?

mmcky avatar Oct 28 '20 03:10 mmcky

Sure thing @mmcky. Will investigate them one by one, and put those ones in jupyterbook-latex which can be implemented there. For the ones which might need contextual codes of other repos, we can see if it's much easier to implement it there instead.

AakashGfude avatar Oct 28 '20 04:10 AakashGfude

You may want to include executablebooks/jupyter-book#1065 :)

rodrigogiraoserrao avatar Oct 30 '20 18:10 rodrigogiraoserrao

You may want to include executablebooks/jupyter-book#1065 :)

Will add it once it is clear if it is a kernel/MIME bundle issue, or latex issue itself.

AakashGfude avatar Nov 03 '20 00:11 AakashGfude

HI,i would like to put content between the title page and the TOC. I saw it is possible using 'tableofcontents' variable of LaTeX customisation https://www.sphinx-doc.org/en/master/latex.html I tried to use this variable in a jupyterbook config but it does not do anything. Thanks.

pnavaro avatar Jan 19 '21 21:01 pnavaro

HI,i would like to put content between the title page and the TOC. I saw it is possible using 'tableofcontents' variable of LaTeX customisation https://www.sphinx-doc.org/en/master/latex.html I tried to use this variable in a jupyterbook config but it does not do anything. Thanks.

I reply to myself, sorry for the noise, I just had to overrride maketitle with

sphinx:
    config:
        latex_elements:
            maketitle: |
                \newcommand\sphinxbackoftitlepage{some text before table of contents}\sphinxmaketitle

pnavaro avatar Jan 20 '21 14:01 pnavaro