-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
\verb の冒頭の空白 #49
Labels
Comments
(LaTeX と pLaTeX で違いが出るので issue にしましたが,これは解消不能な予感がします。ただ,「違いが出る」という事実認識の共有と,必要とあらばドキュメントに書いておこう,という考えから立てたものです。) |
確か
とりあえず \documentclass{article}
\makeatletter
\def\myverb#1{\relax\ifmmode\hbox\else\leavevmode#1\fi
\bgroup
\verb@eol@error \let\do\@makeother \dospecials
\verbatim@font\@noligs
\language\l@nohyphenation
\@ifstar\@sverb\@verb}
\def\TEST#1{\scantokens{%
x\linebreak
\begingroup
\myverb{#1}| |y% \verb の冒頭の空白
\endgroup
あ\myverb{#1}|a|い% \verb の前の和欧文間空白
\par
}}
\begin{document}
\parindent0pt\xkanjiskip=10pt % 強調
\TEST{\null}% \LaTeX
\TEST{} % pLaTeX
\TEST{\vadjust{}}
\end{document} |
aminophen
added a commit
that referenced
this issue
Aug 12, 2017
ありがとうございます。テストのため 033fdde で exppl2e.sty に入れてみました。 |
aminophen
added a commit
that referenced
this issue
Aug 12, 2017
aminophen
added a commit
that referenced
this issue
Sep 23, 2017
aminophen
added a commit
that referenced
this issue
Sep 23, 2017
256c0f0 でカーネルへ移し,jltxdoc.cls の方の定義もこれに合わせ |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
本家 LaTeX2e の \verb の定義には
\relax \ifmmode \hbox \else \leavevmode \null \fi …(以下略)
というように \null があります。この理由は,TeX.SX のここに書かれている通り,「
\verb| abc|
と書いた場合に冒頭のスペースが消えないようにするため」です(回答自体は Heiko Oberdiek 氏の推察によりますが,コメントにある通り Frank Mittelbach 氏がその通りだと認めています)。pLaTeX はまさにこの \null を消しているので,\verb の冒頭の空白が消滅します。例示ソース:
% 一応補足ですが,上記 TeX.SX にある MWE は
となっていますが,これは LaTeX と(現行の)pLaTeX で差が出ません。この理由は
\\
の定義が違っているからで,\@gnewline
に追加された\null
の影響です。(参考: #27 )The text was updated successfully, but these errors were encountered: