You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compiler in the GUI settings is "LaTeX". (It will not compile even if I change to another compiler.)
The web version of Overleaf can compile with exactly the same settings.
How can I compile a Japanese manuscript in the same way as the web version of Overleaf?
Please help me.
The text was updated successfully, but these errors were encountered:
I had the same problem(not solved). Thanks to many contributions, the architecture changed a lot.
In my case, the docker image that had full TeXLive was not used at first.
The name of it is share latex/sharelatex:with-texlive-full and I set SHARELATEX_IMAGE_NAME=sharelatex/sharelatex:with-texlive-full in config/overleaf.rc, line 7.
lib/docker-compose.base.yml references $IMAGE as the image name.
$IMAGE was defined in bin/docker compose by "$image_name:$IMAGE_VERSION".
The value of IMAGE_VERSION was written in config/version, which was 4.2.0 in my case.
That is, the docker image was designated as "share latex/sharelatex:with-texlive-full:4.2.0" even though it was expected to be "share latex/sharelatex:with-texlive-full".
So I modified bin/docker compose, line 67 from export IMAGE="$image_name:$IMAGE_VERSION"
to export IMAGE="$image_name".
Then latex/sharelatex:with-texlive-full successfully worked.
However, even though there was full version of TexLive, the compile of my japanse article failed that succeeds in overleaf.com.
Environment
M2 Mac
Rosetta2(Docker image was AMD64)
macOS 14 Sonoma
pdfTeX 3.141592653-2.6-1.40.25 (TeX Live 2023)
kpathsea version 6.3.5
I want to write a paper in Japanese, but it does not output PDF.
The following is written in output.stdout.
I have already tried the following
tlmgr install scheme-full
in the container to bring TeXLive up to date.config/version
.bin/doctor
to make sure there are no problems.The result of
bin/doctor
is as follows.In the web version of Overleaf, we need to add
latexmkrc
to use Japanese, so the following file is added.The compiler in the GUI settings is "LaTeX". (It will not compile even if I change to another compiler.)
The web version of Overleaf can compile with exactly the same settings.
How can I compile a Japanese manuscript in the same way as the web version of Overleaf?
Please help me.
The text was updated successfully, but these errors were encountered: