カスタマイズされたシンボルのリスト

カスタマイズされたシンボルのリスト

私は、自分でカスタマイズできるようにしたい変数やその他のシンボルのリストを作成することに興味があるので、用語集や命名法などのパッケージには興味がありません。テーブル以外でこれを行う方法がわからないため、次のコードを書きました。

\newcolumntype{K}[1]{>{\flushleft}m{#1}}
{\renewcommand{\arraystretch}{0.1}
\begin{tabular}[t]{ K{12mm} K{3mm} K{120mm} }
$L_f$ & & Monetary value of the damage caused by a hazard (fire, theft...), against which insurance coverage can be taken up. \tabularnewline
$p_f$ & & Probability of occurrence of that hazard.\tabularnewline
$p_d$ & & Probability that the insurer defaults/does not settle its claims.\tabularnewline
$X_0$ & & Position of the initial endowment of the decision-maker.\tabularnewline
$D$ & & Deductible level of a partial insurance contract
\end{tabular}

そして、その結果は次のようになります。 ここに画像の説明を入力してください

しかし、テキストを上部に垂直に揃える(可能であれば両端揃えにする)、行間と行間隔を減らす方法を見つけるのに苦労しています。ところで、何らかの理由で:

{\renewcommand{\arraystretch}{0.1}

私には効きません!

私が望む結果の概要は次のとおりです。

ここに画像の説明を入力してください

ご親切にご協力いただきありがとうございました。

答え1

このため、独自の列スタイルを再定義する必要はありません。これは、tabular環境で既に として定義されています。また、列幅をミリメートルで定義する特別な理由がない場合は、やp{column_width}などの定義済みの長さを使用することをお勧めします。\linewidth\textwidth

次のことを試してください。

\begin{tabular}[t]{p{0.1\linewidth}p{0.9\linewidth} }
  $L_f$ & Monetary value of the damage caused by a hazard (fire, theft...), against which insurance coverage can be taken up. \tabularnewline
  $p_f$ & Probability of occurrence of that hazard.\tabularnewline
  $p_d$ & Probability that the insurer defaults/does not settle its claims.\tabularnewline
  $X_0$ & Position of the initial endowment of the decision-maker.\tabularnewline
  $D$ & Deductible level of a partial insurance contract
\end{tabular}

出力は次のとおりです。

ここに画像の説明を入力してください

関連情報