表をアルファベット順に並べる方法

表をアルファベット順に並べる方法

次のコードをアルファベット順に並べたいです:

\section{Abbreviations} 
\doublespacing
\begin{tabular}{p{4cm}p{12cm}}
\textbf{AD}  & Alzheimer's disease \\
\textbf{FAD}  & Familial Alzheimer's disease \\
\textbf{LOAD}  & Late-onset Alzheimer's disease \\
\textbf{A\textbeta\ }  & Amyloid- \textbeta\  \\
\textbf{APP}  & Amyloid precursor protein \\
\textbf{GWAS}  & Genome-wide-association studies \\
\textbf{SNP}  & Single nucleotide polymorphisms \\
\textbf{CXCL10}  & C-X-C motif chemokine 10 \\
\textbf{OAS1}  & 2’-5’-oligoadenylate synthase 1\\
\textbf{TREM2}  & Triggering receptor expressed on myeloid cells 2 \\
\textbf{R47H KI}  & \textit{Trem2} R47H knock-in mice \\
\textbf{APP KI}  & \textit{APP\textsuperscript{NL-G-F}} knock-in mice \\
\textbf{WT}  & Wild type  \\
\textbf{HO}  & Homozygous \\
\textbf{HET}  & Heterozygous \\
\textbf{P1-P3}  & Postnatal day 1-3\\
\textbf{RT-qPCR}  & Real-time Quantitative PCR  \\
\textbf{CT}  & Cycle threshold \\
\textbf{IHC}  & Immunohistochemistry \\
\textbf{PBS}  & Phosphate-buffered saline \\
\textbf{PBST}  & Phosphate-buffered saline 0.3\% Triton \\
\textbf{TBS}  & Tris-buffered saline \\
\textbf{TBST}  & Tris-buffered saline 0.1\% Tween-20 \\
\end{tabular}

どうすればいいでしょうか? 助けていただけると大変助かります。 ありがとうございます!

答え1

まず、すべてを削除します\textbf{}。ロード配列コマンドを使用して>{\bfseries}最初の列を太字にします。

その後、テキスト エディターに行の並べ替え機能があるかどうかを確認し、並べ替えるすべての行をマークして並べ替えます。ない場合は、行をワード プロセッサまたはスプレッドシートにコピーするか、行をテキスト ファイルとして保存し、オペレーティング システムのコマンド プロンプト (Windows コマンド ラインsort < tobesort.txt > sorted.txt) で並べ替えフィルターにパイプして並べ替えます。

ギリシャ文字をどこに配置するかを決めるには、自分の言語の ISO ソート規則を確認する必要があります。ノルウェー語では、は で始まる最後の行としてソートされましたA

並べ替える類似の表が数十個あるのでなければ、このアプローチが最もシンプルで高速です。そうでない場合は、言語要件に応じて並べ替えることができる並べ替えアルゴリズムを誰かが提供してください。

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

\documentclass{article}
\usepackage{array}

\begin{document}

\section{Abbreviations} 

\begin{tabular}{@{}>{\bfseries}p{4cm}p{12cm}@{}}
AD  & Alzheimer's disease \\
APP  & Amyloid precursor protein \\
APP KI  & \textit{APP\textsuperscript{NL-G-F}} knock-in mice \\
A\boldmath{$\beta$}\   & Amyloid-$\beta$\  \\
CT  & Cycle threshold \\
CXCL10  & C-X-C motif chemokine 10 \\
FAD  & Familial Alzheimer's disease \\
GWAS  & Genome-wide-association studies \\
HET  & Heterozygous \\
HO  & Homozygous \\
IHC  & Immunohistochemistry \\
LOAD  & Late-onset Alzheimer's disease \\
OAS1  & 2’-5’-oligoadenylate synthase 1\\
P1-P3  & Postnatal day 1-3\\
PBS  & Phosphate-buffered saline \\
PBST  & Phosphate-buffered saline 0.3\% Triton \\
R47H KI  & \textit{Trem2} R47H knock-in mice \\
RT-qPCR  & Real-time Quantitative PCR  \\
SNP  & Single nucleotide polymorphisms \\
TBS  & Tris-buffered saline \\
TBST  & Tris-buffered saline 0.1\% Tween-20 \\
TREM2  & Triggering receptor expressed on myeloid cells 2 \\
WT  & Wild type  \\

\end{tabular}

\end{document}

関連情報