Я использую тип документа scrartcl для своего CV и хочу добавить свои публикации как раздел библиографии. Однако у меня уже есть заголовок для раздела из шаблона CV, и когда я включаю следующий код, появляется дополнительный заголовок с именем "Publications" и с совершенно другими шрифтами, которые у меня уже есть в CV
\begingroup
\bibliographystyle{plain}
\begin{thebibliography}
\footnotesize{
\bibitem \newblock bla bla bla
\bibitem \newblock bla bla bla
}
\end{thebibliography}
\endgroup
Пробовал такие команды как
\renewcommand{\bibtitle}{}
\renewcommand{\bibheadtitle}{}
\renewcommand{\refname}{}
\renewcommand\refname{}
и ни один из них не работает, чтобы изменить хотя бы заголовок, хотя я не хочу заголовок, так как у меня есть настроенный из шаблона резюме. Есть идеи или предложения?
\documentclass{scrartcl}
\renewcommand*\refname{}
\reversemarginpar
\newcommand{\MarginText}[1]{\marginpar{\raggedleft\itshape\small#1}}
\usepackage[nochapters]{classicthesis}
\usepackage[LabelsAligned]{currvita}
\usepackage{anyfontsize}
\renewcommand{\cvheadingfont}{\LARGE\color{Cyan}}
\usepackage[numbers]{natbib}
\usepackage[english]{babel}
\AtBeginDocument{\renewcommand*\refname{}}
\renewcommand*\refname{}
\usepackage{hyperref}
\hypersetup{colorlinks, breaklinks, urlcolor=Maroon, linkcolor=Maroon}
\newlength{\datebox}\settowidth{\datebox}{January Jul2011}
\newcommand{\NewEntry}[3]{\noindent\hangindent=2em\hangafter=0 \parbox{\datebox}{\small \textit{#1}}\hspace{0.5em} #2 #3
\vspace{0.5em}}
\newcommand{\Description}[1]{\hangindent=2em\hangafter=0\noindent\footnotesize{#1}\par\normalsize\vspace{1em}}
\date{}
\begin{document}
\begin{cv}{\spacedallcaps{Bla}}\vspace{1.5em} % Your name
\noindent\spacedlowsmallcaps{Personal Information}\vspace{0.5em} % Personal information heading
%------------------------------
% PUBLICATIONS
%----------------------------------------------------------------------------------------
\noindent\spacedlowsmallcaps{Publications}\vspace{1em}
\makeatletter
\renewcommand*\bib@heading{}
\begingroup
\bibliographystyle{plain}
\begin{thebibliography}{2}
\footnotesize{
\begin{footnotesize}
\bibitem{a}
Bla bla
\bibitem{b}
Bla bla
\end{footnotesize}
}
\end{thebibliography}
\endgroup
\makeatother
\end{cv}
\end{document}
решение1
Загрузка natbib
не имеет значения, т.к. currvita
изменяет код для thebibliography
.
Также сброс настроек \refname
или \bib@heading
ничего не происходит.
Хитрость заключается в том, чтобы исправить cv
пример так, чтобы thebibliography
среда не выводила заголовок.
Я переупорядочил преамбулу вашего документа: сначала пакеты, потом настройки. Я также добавил лучший способ задать библиографию в \footnotesize
.
\documentclass{scrartcl}
\usepackage[english]{babel}
\usepackage[nochapters]{classicthesis}
\usepackage[LabelsAligned]{currvita}
\usepackage{anyfontsize}
\usepackage{etoolbox}
\usepackage{hyperref}
\hypersetup{colorlinks, breaklinks, urlcolor=Maroon, linkcolor=Maroon}
\reversemarginpar
\patchcmd{\cv}{\noindent\cvlistheadingfont\cvbibname\par\nopagebreak}{}{}{}
\BeforeBeginEnvironment{thebibliography}{\begingroup\footnotesize}
\AfterEndEnvironment{thebibliography}{\endgroup}
\renewcommand{\cvheadingfont}{\LARGE\color{Cyan}}
\newcommand{\MarginText}[1]{\marginpar{\raggedleft\itshape\small#1}}
\newlength{\datebox}
\settowidth{\datebox}{January Jul2011}
\newcommand{\NewEntry}[3]{%
\noindent\hangindent=2em\hangafter=0
\parbox{\datebox}{\small \textit{#1}}\hspace{0.5em} #2 #3 \vspace{0.5em}%
}
\newcommand{\Description}[1]{%
\hangindent=2em\hangafter=0
\noindent\footnotesize{#1}\par\normalsize\vspace{1em}%
}
\date{}
\begin{document}
\begin{cv}{\spacedallcaps{Bla}}\vspace{1.5em} % Your name
\noindent\spacedlowsmallcaps{Personal Information}\vspace{0.5em} % Personal information heading
%------------------------------
% PUBLICATIONS
%----------------------------------------------------------------------------------------
\noindent\spacedlowsmallcaps{Publications}\vspace{1em}
\begin{thebibliography}{2}
\bibitem{fta}
Bla bla
\bibitem{grey}
Bla bla
\end{thebibliography}
\end{cv}
\end{document}
решение2
Если все, что вам нужно сделать, это изменить natbib
заголовок библиографии, это можно сделать следующим образом:
\renewcommand{\bibsection}{\section{Whatever You Prefer}}