![BibTex 引用格式:隱藏履歷索引/鍵](https://rvso.com/image/327793/BibTex%20%E5%BC%95%E7%94%A8%E6%A0%BC%E5%BC%8F%EF%BC%9A%E9%9A%B1%E8%97%8F%E5%B1%A5%E6%AD%B7%E7%B4%A2%E5%BC%95%2F%E9%8D%B5.png)
對於我的簡歷(pdflatex),我喜歡添加我的出版物(BibTex),但無法刪除引用條目的按鍵/索引。不幸的是我喜歡用一個特殊的mstyle.bst文件(我自己沒有製作)
%% This is file `mstyle.bst',
%% generated with the docstrip utility. - The original source files were:
%% merlin.mbs ... german.mbs ... merlin.mbs ...
我需要更改什麼才能隱藏/刪除此引用[鍵]:
例子:
\begin{filecontents*}{Literatur.bib}
@article{article001,
author = {Hans Mustermann},
title = {Einfach nur ein Titel},
number = {ABCD-E/2008/de/1234},
institution = {Firma AG},
year = {2008}
}
@article{article002,
author = {Hans-Dieter Müller},
title = {Noch ein Titel},
number = {ABCD-E/2007/en/1234},
institution = {Firma AG},
year = {2007}
}
\end{filecontents*}
\documentclass{scrreprt}
\usepackage[ngerman]{babel}
\begin{document}
%% -- CV Body --
\bibliography{Literatur} % Bib File
\bibliographystyle{plain} % I use my mstyle here
\nocite{*}
\end{document}
答案1
您可以嘗試刪除所有與清單相關的空格,以及刪除\@biblabel
列印的方式(如果\@gobble
是參數,則只需 make ):
\documentclass{scrreprt}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{article001,
author = {Hans Mustermann},
title = {Einfach nur ein Titel},
number = {ABCD-E/2008/de/1234},
institution = {Firma AG},
year = {2008}
}
@article{article002,
author = {Hans-Dieter Müller},
title = {Noch ein Titel},
number = {ABCD-E/2007/en/1234},
institution = {Firma AG},
year = {2007}
}
\end{filecontents*}
\begin{document}
\nocite{*}
\bibliographystyle{plain} % bibliography style
\makeatletter
\setlength{\itemindent}{0pt}
\setlength{\labelsep}{0pt}
\setlength{\labelwidth}{0pt}
\let\@biblabel\@gobble
\makeatother
\bibliography{\jobname} % bibliography file
\end{document}