Latex:在我的简历中显示我的APA格式Jornal出版物

时间:2017-12-13 10:08:20

标签: biblatex

我使用Latex制作简历。 我想在简历中显示我的APA格式Jornal出版物。

我该怎么做?

enter image description here

1 个答案:

答案 0 :(得分:0)

要创建源列表,请尝试以下代码:

documentclass{article}

% remove the numbers of the sources
\makeatletter
\renewcommand\@biblabel[1]{}
\makeatother

\begin{document}

    % output the list
    \begin{thebibliography}{}
        \bibitem{litlink1}  author#1. "title #1"
        \bibitem{litlink2}  author#2. "title #2"
        \bibitem{other-link-name}  author#3. "title #3"
    \end{thebibliography}

\end{document}