mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
String changes
This commit is contained in:
parent
da99ac4280
commit
dbe1676212
@ -31,7 +31,7 @@ needs_sphinx = '1.2'
|
|||||||
|
|
||||||
# Add any Sphinx extension module names here, as strings. They can be extensions
|
# Add any Sphinx extension module names here, as strings. They can be extensions
|
||||||
# coming with Sphinx (named 'sphinx.addons.*') or your custom ones.
|
# coming with Sphinx (named 'sphinx.addons.*') or your custom ones.
|
||||||
extensions = ['sphinx.ext.autodoc', 'custom', 'sidebar_toc', 'sphinx.ext.viewcode']
|
extensions = ['sphinx.ext.autodoc', 'custom', 'sidebar_toc', 'sphinx.ext.viewcode', 'sphinx.ext.extlinks']
|
||||||
|
|
||||||
# Add any paths that contain templates here, relative to this directory.
|
# Add any paths that contain templates here, relative to this directory.
|
||||||
templates_path = ['templates']
|
templates_path = ['templates']
|
||||||
@ -175,7 +175,10 @@ def sort_languages(x):
|
|||||||
html_context['other_languages'].sort(key=sort_languages)
|
html_context['other_languages'].sort(key=sort_languages)
|
||||||
html_context['support_text'] = _('Support calibre')
|
html_context['support_text'] = _('Support calibre')
|
||||||
html_context['support_tooltip'] = _('Contribute to support calibre development')
|
html_context['support_tooltip'] = _('Contribute to support calibre development')
|
||||||
html_context['homepage_url'] = 'http://calibre-ebook.com' + (f'/{language}' if needs_localization else '')
|
html_context['homepage_url'] = 'https://calibre-ebook.com' + (f'/{language}' if needs_localization else '')
|
||||||
|
extlinks = {
|
||||||
|
'website': (html_context['homepage_url'] + '/%s', None),
|
||||||
|
}
|
||||||
del sort_languages, get_language
|
del sort_languages, get_language
|
||||||
|
|
||||||
epub_author = u'Kovid Goyal'
|
epub_author = u'Kovid Goyal'
|
||||||
|
@ -586,7 +586,7 @@ instead of using the text inside the tag. Note the trailing ``/@title`` on the
|
|||||||
XPath expression, you can use this form to tell calibre to get the text from any
|
XPath expression, you can use this form to tell calibre to get the text from any
|
||||||
attribute you like.
|
attribute you like.
|
||||||
|
|
||||||
How options are set/saved for Conversion
|
How options are set/saved for conversion
|
||||||
-------------------------------------------
|
-------------------------------------------
|
||||||
|
|
||||||
There are two places where conversion options can be set in calibre. The first is
|
There are two places where conversion options can be set in calibre. The first is
|
||||||
|
@ -16,8 +16,8 @@ If you want to read the book on your reader, connect it to the computer, wait ti
|
|||||||
To get started with more advanced usage, you should read about :doc:`gui`. For even more power and versatility, learn the :doc:`generated/en/cli-index`. You will find the list of :doc:`faq` useful as well.
|
To get started with more advanced usage, you should read about :doc:`gui`. For even more power and versatility, learn the :doc:`generated/en/cli-index`. You will find the list of :doc:`faq` useful as well.
|
||||||
|
|
||||||
If you have more questions, or want to discuss calibre with other users or ask
|
If you have more questions, or want to discuss calibre with other users or ask
|
||||||
for help with specific things, there are `forums and other help resources
|
for help with specific things, there are :website:`forums and other help resources
|
||||||
available <https://calibre-ebook.com/help>`_.
|
available <help>`.
|
||||||
|
|
||||||
.. only:: online
|
.. only:: online
|
||||||
|
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
.. _typesetting_math:
|
.. _typesetting_math:
|
||||||
|
|
||||||
|
|
||||||
Typesetting Math in e-books
|
Typesetting mathematics in e-books
|
||||||
============================
|
====================================
|
||||||
|
|
||||||
The calibre E-book viewer has the ability to display math embedded in e-books
|
The calibre E-book viewer has the ability to display mathematics embedded in e-books
|
||||||
(EPUB and HTML files). You can typeset the math directly with TeX or MathML or
|
(EPUB and HTML files). You can typeset the mathematics directly with TeX or MathML or
|
||||||
AsciiMath. The calibre E-book viewer uses the excellent `MathJax
|
AsciiMath. The calibre E-book viewer uses the excellent `MathJax
|
||||||
<https://www.mathjax.org>`_ library to do this. This is a brief tutorial on
|
<https://www.mathjax.org>`_ library to do this. This is a brief tutorial on
|
||||||
creating e-books with math in them that work well with the calibre E-book viewer.
|
creating e-books with mathematics in them that work well with the calibre E-book viewer.
|
||||||
|
|
||||||
|
|
||||||
A simple HTML file with mathematics
|
A simple HTML file with mathematics
|
||||||
@ -20,7 +20,7 @@ TeX notation for mathematics. You will see that you can use normal TeX
|
|||||||
commands, with the small caveat that ampersands and less than and greater than
|
commands, with the small caveat that ampersands and less than and greater than
|
||||||
signs have to be written as & < and > respectively.
|
signs have to be written as & < and > respectively.
|
||||||
|
|
||||||
The first step is to tell calibre that this will contains maths. You do this by
|
The first step is to tell calibre that this will contains mathematics. You do this by
|
||||||
adding the following snippet of code to the <head> section of the HTML file::
|
adding the following snippet of code to the <head> section of the HTML file::
|
||||||
|
|
||||||
<script type="text/x-mathjax-config"></script>
|
<script type="text/x-mathjax-config"></script>
|
||||||
@ -60,6 +60,5 @@ More information
|
|||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
Since the calibre E-book viewer uses the MathJax library to render mathematics, the best
|
Since the calibre E-book viewer uses the MathJax library to render mathematics, the best
|
||||||
place to find out more about math in e-books and get help is the `MathJax
|
place to find out more about mathematics in e-books and get help is the `MathJax
|
||||||
website <https://www.mathjax.org>`_.
|
website <https://www.mathjax.org>`_.
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ def create_search_internet_menu(callback, author=None):
|
|||||||
m = QMenu((
|
m = QMenu((
|
||||||
_('Search the internet for the author {}').format(author)
|
_('Search the internet for the author {}').format(author)
|
||||||
if author is not None else
|
if author is not None else
|
||||||
_('Search the internet for this book')) + '…'
|
_('Search the internet for this book'))
|
||||||
)
|
)
|
||||||
m.menuAction().setIcon(QIcon(I('search.png')))
|
m.menuAction().setIcon(QIcon(I('search.png')))
|
||||||
items = all_book_searches() if author is None else all_author_searches()
|
items = all_book_searches() if author is None else all_author_searches()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user