Skip to content

Commit fadcb85

Browse files
Merge pull request #13369 from nextcloud/backport/12651/stable31
[stable31] Bugfix/noid/fix pdf generation
2 parents 9c2eba1 + e8feb55 commit fadcb85

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

admin_manual/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# You can set these variables from the command line.
55
SPHINXOPTS +=
6-
SPHINXBUILD = sphinx-build
6+
SPHINXBUILD = buf_size=1000000 sphinx-build
77
PAPER =
88
BUILDDIR = _build
99

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

121121
pdf:
89.7 KB
Loading

admin_manual/ai/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Overview of AI features
1111

1212
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.
1313

14-
.. figure:: images/ai_overview.svg
14+
.. figure:: images/ai_overview.png
1515
:scale: 80%
1616

1717
.. csv-table::

developer_manual/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ latex:
115115
latexpdf:
116116
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
117117
@echo "Running LaTeX files through pdflatex..."
118-
$(MAKE) -C $(BUILDDIR)/latex all-pdf
118+
buf_size=10000000 $(MAKE) -C $(BUILDDIR)/latex all-pdf
119119
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
120120

121121
pdf:

user_manual/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ latex:
134134
latexpdf:
135135
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
136136
@echo "Running LaTeX files through pdflatex..."
137-
$(MAKE) -C $(BUILDDIR)/latex all-pdf
137+
buf_size=10000000 $(MAKE) -C $(BUILDDIR)/latex all-pdf
138138
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
139139

140140
pdf:

0 commit comments

Comments
 (0)