Lualatex/Japanese document compiles fine in TeXstudio, but not MacTex Announcing the arrival...
Understanding piped command in Gnu/Linux
My mentor says to set image to Fine instead of RAW — how is this different from JPG?
Releasing Patch File for BSD3 Licensed Project
Weaponising the Grasp-at-a-Distance spell
New Order #6: Easter Egg
How to resize main filesystem
Is there a spell that can create a permanent fire?
NIntegrate on a solution of a matrix ODE
How could a hydrazine and N2O4 cloud (or it's reactants) show up in weather radar?
Putting class ranking in CV, but against dept guidelines
Inverse square law not accurate for non-point masses?
Did any compiler fully use 80-bit floating point?
How does the body cool itself in a stillsuit?
Centre cell vertically in tabularx
How to achieve cat-like agility?
In musical terms, what properties are varied by the human voice to produce different words / syllables?
latest version of QGIS fails to edit attribute table of GeoJSON file
malloc in main() or malloc in another function: allocating memory for a struct and its members
What are some likely causes to domain member PC losing contact to domain controller?
Was the pager message from Nick Fury to Captain Marvel unnecessary?
What is the proper term for etching or digging of wall to hide conduit of cables
What did Turing mean when saying that "machines cannot give rise to surprises" is due to a fallacy?
Does the universe have a fixed centre of mass?
newbie Q : How to read an output file in one command line
Lualatex/Japanese document compiles fine in TeXstudio, but not MacTex
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Japanese Problem using MacTeX 2011auto-pst-pdf and TeXstudio under MacTeXLuaLaTeX and listings do not work while XeLaTex works fineMacTex not installingRussian in document with Japanese as main language (LuaLaTeX + ltjsarticle)Lualatex not foundDocument compiles with pdflatex but not lualatex but why?MacTex (texlive) - pn2pdf: command not foundlualatex MWE not workingMacTex successfully installed but unable to launch
I'm having trouble compiling the following document.
I have done a fresh install of MacOS 10.14 and installed the full size MacTex 2018 distribution. I have also upgraded all packages using the TexLive Utility.
I installed TexStudio 2.12.14 from MacPorts and tried to compile the following document:
%% start of file `template.tex'.
%% Copyright 2006-2015 Xavier Danaux (xdanaux@gmail.com).
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License version 1.3c,
% available at http://www.latex-project.org/lppl/.
documentclass[11pt,a4paper]{moderncv}
usepackage[ngerman]{babel}
moderncvstyle{classic}
moderncvcolor{grey}
usepackage{luatexja-fontspec}
setmainjfont[BoldFont=IPAexGothic]{IPAexMincho} % mcfamily
setsansjfont{IPAexGothic} % gtfamily
newjfontfamilyjisninety[CJKShape=JIS1990]{IPAexMincho}
renewcommand*{namefont}{fontsize{18}{20}mdseriesupshape}
renewcommand*{titlefont}{fontsize{18}{20}mdseriesupshape}
usepackage{multicol}
usepackage{fontawesome}
usepackage{footmisc}
usepackage[scale=0.75]{geometry}
setlength{hintscolumnwidth}{3.5cm}
usepackage{tabularx}
usepackage{ltablex}
usepackage{tabu}
usepackage{longtable}
usepackage{array}
newcolumntype{L}[1]{>{raggedrightletnewline\arraybackslashhspace{0pt}}m{#1}}
newcolumntype{C}[1]{>{centeringletnewline\arraybackslashhspace{0pt}}m{#1}}
newcolumntype{R}[1]{>{raggedleftletnewline\arraybackslashhspace{0pt}}m{#1}}
renewcommand{arraystretch}{1.3}
newcolumntype{b}{X}
newcolumntype{s}{>{hsize=.2hsize}X}
usepackage{booktabs}
% personal data
name{芭蕉}{松尾}
address{123-3456}{日本語をかきましょう。}{日本語をかきましょう。}
email{sth@mail.net}
%----------------------------------------------------------------------------------
% content
%----------------------------------------------------------------------------------
begin{document}
%----- resume ---------------------------------------------------------
makecvtitle
section{headline}
cvitem{ghi}{textit{this should actually compile just fine}}
section{headline}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}{
begin{itemize}
item I studied.
end{itemize}}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}{
begin{itemize}
item Stuff
end{itemize}}
section{headline}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}
{Stuff and stuff
begin{itemize}
item This is one.
item And another one.
end{itemize}}
section{headlinefootnotemark}
cvitemwithcomment{日本語}{C1/C1/C1}{}
footnotetext{This is a footnote}
end{document}
I get the following error(s):
- Undefined control sequence. makecvtitle
- You have requested package
moderncvheadi', but the package providesmoderncvheadi'.
- Font shape
JT3/mc/m/it' undefined(Font) usingJT3/mc/m/n' instead - Font shape
JT3/IPAexMincho(0)/m/sl' undefined(Font) usingJT3/IPAexMincho(0)/m/n' instead
- Some font shapes were not available, defaults substituted.
I thought it had something to do with the font (IPAexMincho) not being present, but the package ipaex is actually installed (included in MacTex, although I'm not sure if that's the one I need, because in Linux the packages are named differently).
What really confuses me is, that this document here compiles perfectly fine on the other hand:
documentclass{ltjsarticle}
usepackage{luatexja-fontspec}
setmainfont[Ligatures=TeX]{TeXGyreTermes}
setsansfont[Ligatures=TeX]{TeXGyreHeros}
setmainjfont[BoldFont=IPAexGothic]{IPAexMincho}
setsansjfont{IPAexGothic}
newjfontfamilyjisninety[CJKShape=JIS1990]{IPAexMincho}
begin{document}
mainのフォント. {bfseries boldのフォント. }{sffamilygtfamily sansのフォント. }
通常の「辻」. {jisninety JIS90字形の「辻」. }
end{document}
Help would be much appreciated :)
luatex mactex japanese
add a comment |
I'm having trouble compiling the following document.
I have done a fresh install of MacOS 10.14 and installed the full size MacTex 2018 distribution. I have also upgraded all packages using the TexLive Utility.
I installed TexStudio 2.12.14 from MacPorts and tried to compile the following document:
%% start of file `template.tex'.
%% Copyright 2006-2015 Xavier Danaux (xdanaux@gmail.com).
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License version 1.3c,
% available at http://www.latex-project.org/lppl/.
documentclass[11pt,a4paper]{moderncv}
usepackage[ngerman]{babel}
moderncvstyle{classic}
moderncvcolor{grey}
usepackage{luatexja-fontspec}
setmainjfont[BoldFont=IPAexGothic]{IPAexMincho} % mcfamily
setsansjfont{IPAexGothic} % gtfamily
newjfontfamilyjisninety[CJKShape=JIS1990]{IPAexMincho}
renewcommand*{namefont}{fontsize{18}{20}mdseriesupshape}
renewcommand*{titlefont}{fontsize{18}{20}mdseriesupshape}
usepackage{multicol}
usepackage{fontawesome}
usepackage{footmisc}
usepackage[scale=0.75]{geometry}
setlength{hintscolumnwidth}{3.5cm}
usepackage{tabularx}
usepackage{ltablex}
usepackage{tabu}
usepackage{longtable}
usepackage{array}
newcolumntype{L}[1]{>{raggedrightletnewline\arraybackslashhspace{0pt}}m{#1}}
newcolumntype{C}[1]{>{centeringletnewline\arraybackslashhspace{0pt}}m{#1}}
newcolumntype{R}[1]{>{raggedleftletnewline\arraybackslashhspace{0pt}}m{#1}}
renewcommand{arraystretch}{1.3}
newcolumntype{b}{X}
newcolumntype{s}{>{hsize=.2hsize}X}
usepackage{booktabs}
% personal data
name{芭蕉}{松尾}
address{123-3456}{日本語をかきましょう。}{日本語をかきましょう。}
email{sth@mail.net}
%----------------------------------------------------------------------------------
% content
%----------------------------------------------------------------------------------
begin{document}
%----- resume ---------------------------------------------------------
makecvtitle
section{headline}
cvitem{ghi}{textit{this should actually compile just fine}}
section{headline}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}{
begin{itemize}
item I studied.
end{itemize}}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}{
begin{itemize}
item Stuff
end{itemize}}
section{headline}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}
{Stuff and stuff
begin{itemize}
item This is one.
item And another one.
end{itemize}}
section{headlinefootnotemark}
cvitemwithcomment{日本語}{C1/C1/C1}{}
footnotetext{This is a footnote}
end{document}
I get the following error(s):
- Undefined control sequence. makecvtitle
- You have requested package
moderncvheadi', but the package providesmoderncvheadi'.
- Font shape
JT3/mc/m/it' undefined(Font) usingJT3/mc/m/n' instead - Font shape
JT3/IPAexMincho(0)/m/sl' undefined(Font) usingJT3/IPAexMincho(0)/m/n' instead
- Some font shapes were not available, defaults substituted.
I thought it had something to do with the font (IPAexMincho) not being present, but the package ipaex is actually installed (included in MacTex, although I'm not sure if that's the one I need, because in Linux the packages are named differently).
What really confuses me is, that this document here compiles perfectly fine on the other hand:
documentclass{ltjsarticle}
usepackage{luatexja-fontspec}
setmainfont[Ligatures=TeX]{TeXGyreTermes}
setsansfont[Ligatures=TeX]{TeXGyreHeros}
setmainjfont[BoldFont=IPAexGothic]{IPAexMincho}
setsansjfont{IPAexGothic}
newjfontfamilyjisninety[CJKShape=JIS1990]{IPAexMincho}
begin{document}
mainのフォント. {bfseries boldのフォント. }{sffamilygtfamily sansのフォント. }
通常の「辻」. {jisninety JIS90字形の「辻」. }
end{document}
Help would be much appreciated :)
luatex mactex japanese
add a comment |
I'm having trouble compiling the following document.
I have done a fresh install of MacOS 10.14 and installed the full size MacTex 2018 distribution. I have also upgraded all packages using the TexLive Utility.
I installed TexStudio 2.12.14 from MacPorts and tried to compile the following document:
%% start of file `template.tex'.
%% Copyright 2006-2015 Xavier Danaux (xdanaux@gmail.com).
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License version 1.3c,
% available at http://www.latex-project.org/lppl/.
documentclass[11pt,a4paper]{moderncv}
usepackage[ngerman]{babel}
moderncvstyle{classic}
moderncvcolor{grey}
usepackage{luatexja-fontspec}
setmainjfont[BoldFont=IPAexGothic]{IPAexMincho} % mcfamily
setsansjfont{IPAexGothic} % gtfamily
newjfontfamilyjisninety[CJKShape=JIS1990]{IPAexMincho}
renewcommand*{namefont}{fontsize{18}{20}mdseriesupshape}
renewcommand*{titlefont}{fontsize{18}{20}mdseriesupshape}
usepackage{multicol}
usepackage{fontawesome}
usepackage{footmisc}
usepackage[scale=0.75]{geometry}
setlength{hintscolumnwidth}{3.5cm}
usepackage{tabularx}
usepackage{ltablex}
usepackage{tabu}
usepackage{longtable}
usepackage{array}
newcolumntype{L}[1]{>{raggedrightletnewline\arraybackslashhspace{0pt}}m{#1}}
newcolumntype{C}[1]{>{centeringletnewline\arraybackslashhspace{0pt}}m{#1}}
newcolumntype{R}[1]{>{raggedleftletnewline\arraybackslashhspace{0pt}}m{#1}}
renewcommand{arraystretch}{1.3}
newcolumntype{b}{X}
newcolumntype{s}{>{hsize=.2hsize}X}
usepackage{booktabs}
% personal data
name{芭蕉}{松尾}
address{123-3456}{日本語をかきましょう。}{日本語をかきましょう。}
email{sth@mail.net}
%----------------------------------------------------------------------------------
% content
%----------------------------------------------------------------------------------
begin{document}
%----- resume ---------------------------------------------------------
makecvtitle
section{headline}
cvitem{ghi}{textit{this should actually compile just fine}}
section{headline}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}{
begin{itemize}
item I studied.
end{itemize}}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}{
begin{itemize}
item Stuff
end{itemize}}
section{headline}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}
{Stuff and stuff
begin{itemize}
item This is one.
item And another one.
end{itemize}}
section{headlinefootnotemark}
cvitemwithcomment{日本語}{C1/C1/C1}{}
footnotetext{This is a footnote}
end{document}
I get the following error(s):
- Undefined control sequence. makecvtitle
- You have requested package
moderncvheadi', but the package providesmoderncvheadi'.
- Font shape
JT3/mc/m/it' undefined(Font) usingJT3/mc/m/n' instead - Font shape
JT3/IPAexMincho(0)/m/sl' undefined(Font) usingJT3/IPAexMincho(0)/m/n' instead
- Some font shapes were not available, defaults substituted.
I thought it had something to do with the font (IPAexMincho) not being present, but the package ipaex is actually installed (included in MacTex, although I'm not sure if that's the one I need, because in Linux the packages are named differently).
What really confuses me is, that this document here compiles perfectly fine on the other hand:
documentclass{ltjsarticle}
usepackage{luatexja-fontspec}
setmainfont[Ligatures=TeX]{TeXGyreTermes}
setsansfont[Ligatures=TeX]{TeXGyreHeros}
setmainjfont[BoldFont=IPAexGothic]{IPAexMincho}
setsansjfont{IPAexGothic}
newjfontfamilyjisninety[CJKShape=JIS1990]{IPAexMincho}
begin{document}
mainのフォント. {bfseries boldのフォント. }{sffamilygtfamily sansのフォント. }
通常の「辻」. {jisninety JIS90字形の「辻」. }
end{document}
Help would be much appreciated :)
luatex mactex japanese
I'm having trouble compiling the following document.
I have done a fresh install of MacOS 10.14 and installed the full size MacTex 2018 distribution. I have also upgraded all packages using the TexLive Utility.
I installed TexStudio 2.12.14 from MacPorts and tried to compile the following document:
%% start of file `template.tex'.
%% Copyright 2006-2015 Xavier Danaux (xdanaux@gmail.com).
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License version 1.3c,
% available at http://www.latex-project.org/lppl/.
documentclass[11pt,a4paper]{moderncv}
usepackage[ngerman]{babel}
moderncvstyle{classic}
moderncvcolor{grey}
usepackage{luatexja-fontspec}
setmainjfont[BoldFont=IPAexGothic]{IPAexMincho} % mcfamily
setsansjfont{IPAexGothic} % gtfamily
newjfontfamilyjisninety[CJKShape=JIS1990]{IPAexMincho}
renewcommand*{namefont}{fontsize{18}{20}mdseriesupshape}
renewcommand*{titlefont}{fontsize{18}{20}mdseriesupshape}
usepackage{multicol}
usepackage{fontawesome}
usepackage{footmisc}
usepackage[scale=0.75]{geometry}
setlength{hintscolumnwidth}{3.5cm}
usepackage{tabularx}
usepackage{ltablex}
usepackage{tabu}
usepackage{longtable}
usepackage{array}
newcolumntype{L}[1]{>{raggedrightletnewline\arraybackslashhspace{0pt}}m{#1}}
newcolumntype{C}[1]{>{centeringletnewline\arraybackslashhspace{0pt}}m{#1}}
newcolumntype{R}[1]{>{raggedleftletnewline\arraybackslashhspace{0pt}}m{#1}}
renewcommand{arraystretch}{1.3}
newcolumntype{b}{X}
newcolumntype{s}{>{hsize=.2hsize}X}
usepackage{booktabs}
% personal data
name{芭蕉}{松尾}
address{123-3456}{日本語をかきましょう。}{日本語をかきましょう。}
email{sth@mail.net}
%----------------------------------------------------------------------------------
% content
%----------------------------------------------------------------------------------
begin{document}
%----- resume ---------------------------------------------------------
makecvtitle
section{headline}
cvitem{ghi}{textit{this should actually compile just fine}}
section{headline}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}{
begin{itemize}
item I studied.
end{itemize}}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}{
begin{itemize}
item Stuff
end{itemize}}
section{headline}
cventry{00/2011 -- 03/2023}{Input}{More}{Input}{}
{Stuff and stuff
begin{itemize}
item This is one.
item And another one.
end{itemize}}
section{headlinefootnotemark}
cvitemwithcomment{日本語}{C1/C1/C1}{}
footnotetext{This is a footnote}
end{document}
I get the following error(s):
- Undefined control sequence. makecvtitle
- You have requested package
moderncvheadi', but the package providesmoderncvheadi'.
- Font shape
JT3/mc/m/it' undefined(Font) usingJT3/mc/m/n' instead - Font shape
JT3/IPAexMincho(0)/m/sl' undefined(Font) usingJT3/IPAexMincho(0)/m/n' instead
- Some font shapes were not available, defaults substituted.
I thought it had something to do with the font (IPAexMincho) not being present, but the package ipaex is actually installed (included in MacTex, although I'm not sure if that's the one I need, because in Linux the packages are named differently).
What really confuses me is, that this document here compiles perfectly fine on the other hand:
documentclass{ltjsarticle}
usepackage{luatexja-fontspec}
setmainfont[Ligatures=TeX]{TeXGyreTermes}
setsansfont[Ligatures=TeX]{TeXGyreHeros}
setmainjfont[BoldFont=IPAexGothic]{IPAexMincho}
setsansjfont{IPAexGothic}
newjfontfamilyjisninety[CJKShape=JIS1990]{IPAexMincho}
begin{document}
mainのフォント. {bfseries boldのフォント. }{sffamilygtfamily sansのフォント. }
通常の「辻」. {jisninety JIS90字形の「辻」. }
end{document}
Help would be much appreciated :)
luatex mactex japanese
luatex mactex japanese
asked 4 mins ago
SF6SF6
1137
1137
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f485956%2flualatex-japanese-document-compiles-fine-in-texstudio-but-not-mactex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f485956%2flualatex-japanese-document-compiles-fine-in-texstudio-but-not-mactex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown