縮排子項目符號點

縮排子項目符號點

我在網路上看到了以下履歷,並想複製它。 在此輸入影像描述 我嘗試了以下方法,但似乎不起作用。

\section{Technical Skills}
\noindent\rule{\textwidth}{\hlinewidth}
\begin{innerlist}
\item \textbf{Languages} - [\textit{Proficient}] C, C++,Perl,Shell \\ 
            \hspace{25mm}- [\textit{Competent}] Java,Python,SQL
\item \textbf{Miscellaneous} :  Github, gdb , valgrind,

答案1

您可以嘗試使用表格環境來取得以下輸出:

\documentclass{article}
\begin{document}
\section{Technical Skills}

\noindent\begin{tabular}{ll}
 \textbf{Languages}& - \textbf{\textit{Proficient}} C, C++,Perl,Shell \\ 
        &- \textbf{\textit{Competent}} Java,Python,SQL\\
\textbf{Miscellaneous} : & Github, gdb , valgrind,
\end{tabular}
\end{document}

在此輸入影像描述

答案2

怎麼樣:

\documentclass{article}
\begin{document}
Tech skilz:
\begin{itemize}
\item[Langs:]

\emph{Good:} Brainf*ck

\emph{OK:} INTERCAL

\item[Stuff:] MS-DOS, CRAY computers
\end{itemize}
\end{document}

相關內容