How do I display trigrams from the Unicode miscellaneous symbols block?
How to encode special unicode symbols as in here in latex?
xetex symbols unicode input-encodings
add a comment |
How to encode special unicode symbols as in here in latex?
xetex symbols unicode input-encodings
Does this help? tex.stackexchange.com/q/132437/4427
– egreg
Jan 28 at 14:09
add a comment |
How to encode special unicode symbols as in here in latex?
xetex symbols unicode input-encodings
How to encode special unicode symbols as in here in latex?
xetex symbols unicode input-encodings
xetex symbols unicode input-encodings
edited Jan 28 at 13:31
Davislor
6,1021227
6,1021227
asked Jan 27 at 5:14
Tony TanTony Tan
1237
1237
Does this help? tex.stackexchange.com/q/132437/4427
– egreg
Jan 28 at 14:09
add a comment |
Does this help? tex.stackexchange.com/q/132437/4427
– egreg
Jan 28 at 14:09
Does this help? tex.stackexchange.com/q/132437/4427
– egreg
Jan 28 at 14:09
Does this help? tex.stackexchange.com/q/132437/4427
– egreg
Jan 28 at 14:09
add a comment |
1 Answer
1
active
oldest
votes
My apologies for misunderstanding your question the first time. Here is a template that reproduces the example you gave in XeLaTeX. (Okay, I replaced the tildes with en dashes.)
documentclass[varwidth = 10cm, preview]{standalone}
% This document class is appropriate for a TeX.SX MWE. In a real document,
% you will want to change it.
usepackage{fontspec}
usepackage[english]{babel}
usepackage{newunicodechar}
% Workaround for a bug in Babel 3.22:
babelprovide[script = CJK, language = {Chinese Simplified}]{chinese-simplified}
% This example uses the Noto font family. Any OpenType font should work.
babelfont{rm}[Scale = 1.0, Ligatures = TeX ]{Noto Serif}
defaultfontfeatures{ Scale = MatchUppercase, Ligatures = TeX }
babelfont{sf}{Noto Sans}
babelfont[chinese-simplified]{rm}[Ligatures = Common]{Noto Serif CJK SC}
babelfont[chinese-simplified]{sf}[Ligatures = Common]{Noto Sans CJK SC}
newfontfamilymiscsymfont{DejaVu Sans}
newunicodechar{:}{foreignlanguage{chinese-simplified}{:}}
newunicodechar{⚊}{{miscsymfontsymbol{"268A}}}
newunicodechar{⚋}{{miscsymfontsymbol{"268B}}}
newunicodechar{⚌}{{miscsymfontsymbol{"268C}}}
newunicodechar{⚍}{{miscsymfontsymbol{"268D}}}
newunicodechar{⚎}{{miscsymfontsymbol{"268E}}}
newunicodechar{⚏}{{miscsymfontsymbol{"268F}}}
newunicodechar{☰}{{miscsymfontsymbol{"2630}}}
newunicodechar{☱}{{miscsymfontsymbol{"2631}}}
newunicodechar{☲}{{miscsymfontsymbol{"2632}}}
newunicodechar{☳}{{miscsymfontsymbol{"2633}}}
newunicodechar{☴}{{miscsymfontsymbol{"2634}}}
newunicodechar{☵}{{miscsymfontsymbol{"2635}}}
newunicodechar{☶}{{miscsymfontsymbol{"2636}}}
newunicodechar{☷}{{miscsymfontsymbol{"2637}}}
% Also define U+4DC0-U+4DFF.
begin{document}
begin{enumerate}
item Miscellaneous Symbols (U+2600--U+26FF):
begin{itemize}
item foreignlanguage{chinese-simplified}{兩儀:}U+268A--U+268B (⚊ ⚋)
item foreignlanguage{chinese-simplified}{四象:}U+268C--U+268F (⚌ ⚍ ⚎ ⚏)
item foreignlanguage{chinese-simplified}{八卦:}U+2630--U+2637 (☰ ☱ ☲ ☳ ☴ ☵ ☶ ☷)
end{itemize}
item foreignlanguage{chinese-simplified}{六爻符號:}
begin{itemize}
item foreignlanguage{chinese-simplified}{六十四卦、易經:}U+4DC0--U+4DFF
end{itemize}
end{enumerate}
end{document}
You need to load the trigram symbols from a font that contains them. Another option would be to use ucharclasses
with the character class MiscellaneousSymbols
, although this does not play well with Babel.
Thanks for your help! I do not have trouble in Chinese encoding and I am using ceCJK. It is the special symbols I am having issue with. I can input them ok (C-x 8 RET 2630), but it does not show in pdf output.
– Tony Tan
Jan 27 at 23:26
@TonyTan Sorry for misunderstanding. You mean the trigrams aren’t displaying? You’d want to make sure to load them from a font that supports them, for example DejaVu Sans. I’ll update my answer.
– Davislor
Jan 27 at 23:32
@TonyTan Thank you for the clarification. Is this new answer more what you were looking for?
– Davislor
Jan 28 at 0:10
Thank you so much! This is what I wanted!
– Tony Tan
Jan 28 at 0:17
add a comment |
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%2f472060%2fhow-do-i-display-trigrams-from-the-unicode-miscellaneous-symbols-block%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
My apologies for misunderstanding your question the first time. Here is a template that reproduces the example you gave in XeLaTeX. (Okay, I replaced the tildes with en dashes.)
documentclass[varwidth = 10cm, preview]{standalone}
% This document class is appropriate for a TeX.SX MWE. In a real document,
% you will want to change it.
usepackage{fontspec}
usepackage[english]{babel}
usepackage{newunicodechar}
% Workaround for a bug in Babel 3.22:
babelprovide[script = CJK, language = {Chinese Simplified}]{chinese-simplified}
% This example uses the Noto font family. Any OpenType font should work.
babelfont{rm}[Scale = 1.0, Ligatures = TeX ]{Noto Serif}
defaultfontfeatures{ Scale = MatchUppercase, Ligatures = TeX }
babelfont{sf}{Noto Sans}
babelfont[chinese-simplified]{rm}[Ligatures = Common]{Noto Serif CJK SC}
babelfont[chinese-simplified]{sf}[Ligatures = Common]{Noto Sans CJK SC}
newfontfamilymiscsymfont{DejaVu Sans}
newunicodechar{:}{foreignlanguage{chinese-simplified}{:}}
newunicodechar{⚊}{{miscsymfontsymbol{"268A}}}
newunicodechar{⚋}{{miscsymfontsymbol{"268B}}}
newunicodechar{⚌}{{miscsymfontsymbol{"268C}}}
newunicodechar{⚍}{{miscsymfontsymbol{"268D}}}
newunicodechar{⚎}{{miscsymfontsymbol{"268E}}}
newunicodechar{⚏}{{miscsymfontsymbol{"268F}}}
newunicodechar{☰}{{miscsymfontsymbol{"2630}}}
newunicodechar{☱}{{miscsymfontsymbol{"2631}}}
newunicodechar{☲}{{miscsymfontsymbol{"2632}}}
newunicodechar{☳}{{miscsymfontsymbol{"2633}}}
newunicodechar{☴}{{miscsymfontsymbol{"2634}}}
newunicodechar{☵}{{miscsymfontsymbol{"2635}}}
newunicodechar{☶}{{miscsymfontsymbol{"2636}}}
newunicodechar{☷}{{miscsymfontsymbol{"2637}}}
% Also define U+4DC0-U+4DFF.
begin{document}
begin{enumerate}
item Miscellaneous Symbols (U+2600--U+26FF):
begin{itemize}
item foreignlanguage{chinese-simplified}{兩儀:}U+268A--U+268B (⚊ ⚋)
item foreignlanguage{chinese-simplified}{四象:}U+268C--U+268F (⚌ ⚍ ⚎ ⚏)
item foreignlanguage{chinese-simplified}{八卦:}U+2630--U+2637 (☰ ☱ ☲ ☳ ☴ ☵ ☶ ☷)
end{itemize}
item foreignlanguage{chinese-simplified}{六爻符號:}
begin{itemize}
item foreignlanguage{chinese-simplified}{六十四卦、易經:}U+4DC0--U+4DFF
end{itemize}
end{enumerate}
end{document}
You need to load the trigram symbols from a font that contains them. Another option would be to use ucharclasses
with the character class MiscellaneousSymbols
, although this does not play well with Babel.
Thanks for your help! I do not have trouble in Chinese encoding and I am using ceCJK. It is the special symbols I am having issue with. I can input them ok (C-x 8 RET 2630), but it does not show in pdf output.
– Tony Tan
Jan 27 at 23:26
@TonyTan Sorry for misunderstanding. You mean the trigrams aren’t displaying? You’d want to make sure to load them from a font that supports them, for example DejaVu Sans. I’ll update my answer.
– Davislor
Jan 27 at 23:32
@TonyTan Thank you for the clarification. Is this new answer more what you were looking for?
– Davislor
Jan 28 at 0:10
Thank you so much! This is what I wanted!
– Tony Tan
Jan 28 at 0:17
add a comment |
My apologies for misunderstanding your question the first time. Here is a template that reproduces the example you gave in XeLaTeX. (Okay, I replaced the tildes with en dashes.)
documentclass[varwidth = 10cm, preview]{standalone}
% This document class is appropriate for a TeX.SX MWE. In a real document,
% you will want to change it.
usepackage{fontspec}
usepackage[english]{babel}
usepackage{newunicodechar}
% Workaround for a bug in Babel 3.22:
babelprovide[script = CJK, language = {Chinese Simplified}]{chinese-simplified}
% This example uses the Noto font family. Any OpenType font should work.
babelfont{rm}[Scale = 1.0, Ligatures = TeX ]{Noto Serif}
defaultfontfeatures{ Scale = MatchUppercase, Ligatures = TeX }
babelfont{sf}{Noto Sans}
babelfont[chinese-simplified]{rm}[Ligatures = Common]{Noto Serif CJK SC}
babelfont[chinese-simplified]{sf}[Ligatures = Common]{Noto Sans CJK SC}
newfontfamilymiscsymfont{DejaVu Sans}
newunicodechar{:}{foreignlanguage{chinese-simplified}{:}}
newunicodechar{⚊}{{miscsymfontsymbol{"268A}}}
newunicodechar{⚋}{{miscsymfontsymbol{"268B}}}
newunicodechar{⚌}{{miscsymfontsymbol{"268C}}}
newunicodechar{⚍}{{miscsymfontsymbol{"268D}}}
newunicodechar{⚎}{{miscsymfontsymbol{"268E}}}
newunicodechar{⚏}{{miscsymfontsymbol{"268F}}}
newunicodechar{☰}{{miscsymfontsymbol{"2630}}}
newunicodechar{☱}{{miscsymfontsymbol{"2631}}}
newunicodechar{☲}{{miscsymfontsymbol{"2632}}}
newunicodechar{☳}{{miscsymfontsymbol{"2633}}}
newunicodechar{☴}{{miscsymfontsymbol{"2634}}}
newunicodechar{☵}{{miscsymfontsymbol{"2635}}}
newunicodechar{☶}{{miscsymfontsymbol{"2636}}}
newunicodechar{☷}{{miscsymfontsymbol{"2637}}}
% Also define U+4DC0-U+4DFF.
begin{document}
begin{enumerate}
item Miscellaneous Symbols (U+2600--U+26FF):
begin{itemize}
item foreignlanguage{chinese-simplified}{兩儀:}U+268A--U+268B (⚊ ⚋)
item foreignlanguage{chinese-simplified}{四象:}U+268C--U+268F (⚌ ⚍ ⚎ ⚏)
item foreignlanguage{chinese-simplified}{八卦:}U+2630--U+2637 (☰ ☱ ☲ ☳ ☴ ☵ ☶ ☷)
end{itemize}
item foreignlanguage{chinese-simplified}{六爻符號:}
begin{itemize}
item foreignlanguage{chinese-simplified}{六十四卦、易經:}U+4DC0--U+4DFF
end{itemize}
end{enumerate}
end{document}
You need to load the trigram symbols from a font that contains them. Another option would be to use ucharclasses
with the character class MiscellaneousSymbols
, although this does not play well with Babel.
Thanks for your help! I do not have trouble in Chinese encoding and I am using ceCJK. It is the special symbols I am having issue with. I can input them ok (C-x 8 RET 2630), but it does not show in pdf output.
– Tony Tan
Jan 27 at 23:26
@TonyTan Sorry for misunderstanding. You mean the trigrams aren’t displaying? You’d want to make sure to load them from a font that supports them, for example DejaVu Sans. I’ll update my answer.
– Davislor
Jan 27 at 23:32
@TonyTan Thank you for the clarification. Is this new answer more what you were looking for?
– Davislor
Jan 28 at 0:10
Thank you so much! This is what I wanted!
– Tony Tan
Jan 28 at 0:17
add a comment |
My apologies for misunderstanding your question the first time. Here is a template that reproduces the example you gave in XeLaTeX. (Okay, I replaced the tildes with en dashes.)
documentclass[varwidth = 10cm, preview]{standalone}
% This document class is appropriate for a TeX.SX MWE. In a real document,
% you will want to change it.
usepackage{fontspec}
usepackage[english]{babel}
usepackage{newunicodechar}
% Workaround for a bug in Babel 3.22:
babelprovide[script = CJK, language = {Chinese Simplified}]{chinese-simplified}
% This example uses the Noto font family. Any OpenType font should work.
babelfont{rm}[Scale = 1.0, Ligatures = TeX ]{Noto Serif}
defaultfontfeatures{ Scale = MatchUppercase, Ligatures = TeX }
babelfont{sf}{Noto Sans}
babelfont[chinese-simplified]{rm}[Ligatures = Common]{Noto Serif CJK SC}
babelfont[chinese-simplified]{sf}[Ligatures = Common]{Noto Sans CJK SC}
newfontfamilymiscsymfont{DejaVu Sans}
newunicodechar{:}{foreignlanguage{chinese-simplified}{:}}
newunicodechar{⚊}{{miscsymfontsymbol{"268A}}}
newunicodechar{⚋}{{miscsymfontsymbol{"268B}}}
newunicodechar{⚌}{{miscsymfontsymbol{"268C}}}
newunicodechar{⚍}{{miscsymfontsymbol{"268D}}}
newunicodechar{⚎}{{miscsymfontsymbol{"268E}}}
newunicodechar{⚏}{{miscsymfontsymbol{"268F}}}
newunicodechar{☰}{{miscsymfontsymbol{"2630}}}
newunicodechar{☱}{{miscsymfontsymbol{"2631}}}
newunicodechar{☲}{{miscsymfontsymbol{"2632}}}
newunicodechar{☳}{{miscsymfontsymbol{"2633}}}
newunicodechar{☴}{{miscsymfontsymbol{"2634}}}
newunicodechar{☵}{{miscsymfontsymbol{"2635}}}
newunicodechar{☶}{{miscsymfontsymbol{"2636}}}
newunicodechar{☷}{{miscsymfontsymbol{"2637}}}
% Also define U+4DC0-U+4DFF.
begin{document}
begin{enumerate}
item Miscellaneous Symbols (U+2600--U+26FF):
begin{itemize}
item foreignlanguage{chinese-simplified}{兩儀:}U+268A--U+268B (⚊ ⚋)
item foreignlanguage{chinese-simplified}{四象:}U+268C--U+268F (⚌ ⚍ ⚎ ⚏)
item foreignlanguage{chinese-simplified}{八卦:}U+2630--U+2637 (☰ ☱ ☲ ☳ ☴ ☵ ☶ ☷)
end{itemize}
item foreignlanguage{chinese-simplified}{六爻符號:}
begin{itemize}
item foreignlanguage{chinese-simplified}{六十四卦、易經:}U+4DC0--U+4DFF
end{itemize}
end{enumerate}
end{document}
You need to load the trigram symbols from a font that contains them. Another option would be to use ucharclasses
with the character class MiscellaneousSymbols
, although this does not play well with Babel.
My apologies for misunderstanding your question the first time. Here is a template that reproduces the example you gave in XeLaTeX. (Okay, I replaced the tildes with en dashes.)
documentclass[varwidth = 10cm, preview]{standalone}
% This document class is appropriate for a TeX.SX MWE. In a real document,
% you will want to change it.
usepackage{fontspec}
usepackage[english]{babel}
usepackage{newunicodechar}
% Workaround for a bug in Babel 3.22:
babelprovide[script = CJK, language = {Chinese Simplified}]{chinese-simplified}
% This example uses the Noto font family. Any OpenType font should work.
babelfont{rm}[Scale = 1.0, Ligatures = TeX ]{Noto Serif}
defaultfontfeatures{ Scale = MatchUppercase, Ligatures = TeX }
babelfont{sf}{Noto Sans}
babelfont[chinese-simplified]{rm}[Ligatures = Common]{Noto Serif CJK SC}
babelfont[chinese-simplified]{sf}[Ligatures = Common]{Noto Sans CJK SC}
newfontfamilymiscsymfont{DejaVu Sans}
newunicodechar{:}{foreignlanguage{chinese-simplified}{:}}
newunicodechar{⚊}{{miscsymfontsymbol{"268A}}}
newunicodechar{⚋}{{miscsymfontsymbol{"268B}}}
newunicodechar{⚌}{{miscsymfontsymbol{"268C}}}
newunicodechar{⚍}{{miscsymfontsymbol{"268D}}}
newunicodechar{⚎}{{miscsymfontsymbol{"268E}}}
newunicodechar{⚏}{{miscsymfontsymbol{"268F}}}
newunicodechar{☰}{{miscsymfontsymbol{"2630}}}
newunicodechar{☱}{{miscsymfontsymbol{"2631}}}
newunicodechar{☲}{{miscsymfontsymbol{"2632}}}
newunicodechar{☳}{{miscsymfontsymbol{"2633}}}
newunicodechar{☴}{{miscsymfontsymbol{"2634}}}
newunicodechar{☵}{{miscsymfontsymbol{"2635}}}
newunicodechar{☶}{{miscsymfontsymbol{"2636}}}
newunicodechar{☷}{{miscsymfontsymbol{"2637}}}
% Also define U+4DC0-U+4DFF.
begin{document}
begin{enumerate}
item Miscellaneous Symbols (U+2600--U+26FF):
begin{itemize}
item foreignlanguage{chinese-simplified}{兩儀:}U+268A--U+268B (⚊ ⚋)
item foreignlanguage{chinese-simplified}{四象:}U+268C--U+268F (⚌ ⚍ ⚎ ⚏)
item foreignlanguage{chinese-simplified}{八卦:}U+2630--U+2637 (☰ ☱ ☲ ☳ ☴ ☵ ☶ ☷)
end{itemize}
item foreignlanguage{chinese-simplified}{六爻符號:}
begin{itemize}
item foreignlanguage{chinese-simplified}{六十四卦、易經:}U+4DC0--U+4DFF
end{itemize}
end{enumerate}
end{document}
You need to load the trigram symbols from a font that contains them. Another option would be to use ucharclasses
with the character class MiscellaneousSymbols
, although this does not play well with Babel.
edited Jan 28 at 13:24
answered Jan 27 at 6:57
DavislorDavislor
6,1021227
6,1021227
Thanks for your help! I do not have trouble in Chinese encoding and I am using ceCJK. It is the special symbols I am having issue with. I can input them ok (C-x 8 RET 2630), but it does not show in pdf output.
– Tony Tan
Jan 27 at 23:26
@TonyTan Sorry for misunderstanding. You mean the trigrams aren’t displaying? You’d want to make sure to load them from a font that supports them, for example DejaVu Sans. I’ll update my answer.
– Davislor
Jan 27 at 23:32
@TonyTan Thank you for the clarification. Is this new answer more what you were looking for?
– Davislor
Jan 28 at 0:10
Thank you so much! This is what I wanted!
– Tony Tan
Jan 28 at 0:17
add a comment |
Thanks for your help! I do not have trouble in Chinese encoding and I am using ceCJK. It is the special symbols I am having issue with. I can input them ok (C-x 8 RET 2630), but it does not show in pdf output.
– Tony Tan
Jan 27 at 23:26
@TonyTan Sorry for misunderstanding. You mean the trigrams aren’t displaying? You’d want to make sure to load them from a font that supports them, for example DejaVu Sans. I’ll update my answer.
– Davislor
Jan 27 at 23:32
@TonyTan Thank you for the clarification. Is this new answer more what you were looking for?
– Davislor
Jan 28 at 0:10
Thank you so much! This is what I wanted!
– Tony Tan
Jan 28 at 0:17
Thanks for your help! I do not have trouble in Chinese encoding and I am using ceCJK. It is the special symbols I am having issue with. I can input them ok (C-x 8 RET 2630), but it does not show in pdf output.
– Tony Tan
Jan 27 at 23:26
Thanks for your help! I do not have trouble in Chinese encoding and I am using ceCJK. It is the special symbols I am having issue with. I can input them ok (C-x 8 RET 2630), but it does not show in pdf output.
– Tony Tan
Jan 27 at 23:26
@TonyTan Sorry for misunderstanding. You mean the trigrams aren’t displaying? You’d want to make sure to load them from a font that supports them, for example DejaVu Sans. I’ll update my answer.
– Davislor
Jan 27 at 23:32
@TonyTan Sorry for misunderstanding. You mean the trigrams aren’t displaying? You’d want to make sure to load them from a font that supports them, for example DejaVu Sans. I’ll update my answer.
– Davislor
Jan 27 at 23:32
@TonyTan Thank you for the clarification. Is this new answer more what you were looking for?
– Davislor
Jan 28 at 0:10
@TonyTan Thank you for the clarification. Is this new answer more what you were looking for?
– Davislor
Jan 28 at 0:10
Thank you so much! This is what I wanted!
– Tony Tan
Jan 28 at 0:17
Thank you so much! This is what I wanted!
– Tony Tan
Jan 28 at 0:17
add a comment |
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%2f472060%2fhow-do-i-display-trigrams-from-the-unicode-miscellaneous-symbols-block%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
Does this help? tex.stackexchange.com/q/132437/4427
– egreg
Jan 28 at 14:09