2つの条件でセットをフォーマットする

2つの条件でセットをフォーマットする

私は次のものを LaTeX でフォーマットしようとしています:

私が望むもののイメージ

配列を使用してみましたが、左側を中央に配置することができず、中央に大きなバーを作成する方法がわかりません。これをフォーマットするための支援をいただければ幸いです。

答え1

ここでの解決策は、(a) 2 列のarray環境を使用し、(b) をminipage右側の列に配置し、(c)環境enumerate内で 環境を使用するというものです。display -math 環境内に配置すると、 は自動的に水平方向に中央揃えされるminipageことに注意してください。array

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

\documentclass{article} % or some other suitable document class
\usepackage{enumitem}
\newlength\mylen
% measure width of 'minipage' environment:
\settowidth\mylen{(1)\quad$f(hu)=f(h)$ for all $u\in U_f$ an open set in $G$}

\begin{document}

\[
\left\{ \begin{array}{@{} l | l @{}}
f\colon G\to W &
\begin{minipage}{\mylen}
\begin{enumerate}[left=0pt,nosep,label=(\arabic*)]
\item $f(bg)=\Delta(b)^{1/2}\sigma(b)f(g),\ \forall b\in B,\ \forall g\in G$ 
\item $f(hu)=f(h)$ for all $u\in U_f$ an open set in $G$
\end{enumerate}
\end{minipage}
\end{array} \right\}
\]

\end{document}

答え2

こんなのもいいかもしれない

ここで書く各項目

\item $f(bg)=\Delta(b)...$  

完全なMWE

\documentclass[a4paper]{article}
\usepackage{mathtools,varwidth,enumitem}
\begin{document}

\noindent
Line just to show that it is centered

\noindent
\rule\textwidth{1pt}%

\[
  \left\{
    f: G \to W
    \:
    \middle\vert
    \begin{varwidth}{\textwidth}% it readjusts it self
      \begin{enumerate}[label=(\alph*),nosep, leftmargin=*]
      \item foobar
      \item bar foo
      \end{enumerate}
    \end{varwidth}
  \right\}
\]
\end{document}

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

答え3

enumerateこの単純なケースでは必要ありません。

\documentclass[a4paper]{article}
\usepackage{amsmath}

\begin{document}

\[
  \left\{\,
    f: G \to W
    \;\middle\vert\;
    \renewcommand{\arraystretch}{1.2}% like in cases
    \begin{tabular}{@{}r@{ }l@{}}
    (1) & $f(bg)=\Delta(b)^{1/2}\sigma(b)f(g),\ \forall b\in B,\ \forall g\in G$ \\
    (2) & $f(hu)=f(h)$ for all $u\in U_f$ an open set in $G$
    \end{tabular}
  \,\right\}
\]

\end{document}

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

関連情報