帮助在表格环境下缩进第二行

帮助在表格环境下缩进第二行
\begin{tabular}{ @{} >{\bfseries}l @{\hspace{1ex}} l }
Programming Languages: \ & C, Python \\

Simulation And Modelling Software: \ & GROMACS, VMD, PyMol \\

Bioinformatics Tools: \ & Phytozome, PlantCare, pfam, ExPasy Protoparam, Cello, MEME Suite, Plant Genome Duplication Database, Gene Structure Display Server \\



Electrochemical Technique: \ & Square Wave Voltammetry, Cyclic Voltammetry \\

\end{tabular}

\end{rSection}

但前景如下:

SKILLS
Programming Languages: C, Python
Simulation And Modelling Software: GROMACS, VMD, PyMol
Bioinformatics Tools: Phytozome, PlantCare, pfam, ExPasy Protoparam, Cello, MEME Suite, Plant Geno
Electrochemical Technique: Square Wave Voltammetry, Cyclic Voltammetry

如何不让大行不完整,而是从第二行开始,但就在 Phytozome 这个词之后

答案1

我不认为tabular环境是完成手头工作的最佳工具。相反,我会使用description环境。

在此处输入图片描述

\documentclass{article}
\usepackage{enumitem}
\begin{document}

\begin{description}[noitemsep,before={\raggedright}]
\item[Programming languages] C, Python 
\item[Simulation and modelling software] GROMACS, VMD, PyMol
\item[Bioinformatics tools] Phytozome, PlantCare, pfam, ExPasy Protoparam, Cello, MEME Suite, Plant Genome Duplication Database, Gene Structure Display Server 
\item[Electrochemical technique] Square Wave Voltammetry, Cyclic Voltammetry
\end{description}

\end{document}

相关内容