
私は vim で tex を書いていて、自動リンターを持っています。同じ段落内の文章を別の行に書きます (わかりやすくするためとバージョン管理のため)。また、\ref{}
行の始めに名前のようなものを使いたいことがよくあります。次のようになります:
\ref{Q5*} shows that the two problems (or two instances of the same problem) can come apart.
If the two problems are distinct, then~\ref{Q5} has at least one problem which most questions do not.
Even if the problem of self-answering is a special case of the problem of pedantry (which I do not think it is) this at least shows that~\ref{Q5} has two different instances of the problem.
リンターは、\ref{}
改行なしのスペースなしで行の途中で を使用すると警告メッセージを表示するので、改行なしのスペースを使用します (ブロックの 2 行目)。ただし、\ref{}
行の先頭で を使用した場合も同じ警告が表示されます。
行を適切に開始するには何を使用すればよいですか\ref{}
? (そもそもなぜコンパイラがこのような警告をスローするのでしょうか?) 行の先頭に改行なしスペースを置くのは奇妙に思えます。
ありがとう!