\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}