이 코드를 알파벳 순서로 정렬하고 싶습니다.
\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β
가 로 시작하는 마지막 줄로 정렬되었습니다 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}