Skip to content

Commit

Permalink
Merge pull request #12651 from nextcloud/bugfix/noid/fix-PDF-generation
Browse files Browse the repository at this point in the history
Bugfix/noid/fix pdf generation
  • Loading branch information
nickvergessen authored Feb 14, 2025
2 parents 48895d6 + 54eb135 commit b390755
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions admin_manual/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# You can set these variables from the command line.
SPHINXOPTS +=
SPHINXBUILD = sphinx-build
SPHINXBUILD = buf_size=1000000 sphinx-build
PAPER =
BUILDDIR = _build

Expand Down Expand Up @@ -115,7 +115,7 @@ latex:
latexpdf:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
@echo "Running LaTeX files through pdflatex..."
$(MAKE) -C $(BUILDDIR)/latex all-pdf
buf_size=10000000 $(MAKE) -C $(BUILDDIR)/latex all-pdf
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."

pdf:
Expand Down
Binary file added admin_manual/ai/images/ai_overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion admin_manual/ai/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Overview of AI features

Nextcloud uses modularity to separate raw AI functionality from the Graphical User interfaces and apps that make use of said functionality. Each instance can thus make use of various backends that provide the functionality for the same frontends and the same functionality can be implemented by multiple apps using on-premises processing or third-party AI service providers.

.. figure:: images/ai_overview.svg
.. figure:: images/ai_overview.png
:scale: 80%

.. csv-table::
Expand Down
2 changes: 1 addition & 1 deletion developer_manual/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ latex:
latexpdf:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
@echo "Running LaTeX files through pdflatex..."
$(MAKE) -C $(BUILDDIR)/latex all-pdf
buf_size=10000000 $(MAKE) -C $(BUILDDIR)/latex all-pdf
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."

pdf:
Expand Down
2 changes: 1 addition & 1 deletion user_manual/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ latex:
latexpdf:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
@echo "Running LaTeX files through pdflatex..."
$(MAKE) -C $(BUILDDIR)/latex all-pdf
buf_size=10000000 $(MAKE) -C $(BUILDDIR)/latex all-pdf
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."

pdf:
Expand Down

0 comments on commit b390755

Please sign in to comment.