私が入れたとき
\bibliographystyle{ecta}
\bibliography{References_NB}
次の引用には住所と発行者が表示されません。
@book{young_1958,
author = "Michael Young",
title = "The Rise of the Meritocracy",
year = "1958", % Citations: 2,998
publisher = "Thames and Hudson",
address = "London"
}
本文では、次のことを行いました。
\begin{document}
\cite{young_1958} says ...
\end{document}
これを解決する別の方法は、LaTeX に本の出版社と住所を表示するように要求する新しい引用コマンドを定義することだと思います。さらに、引用のタイトルを斜体以外にするにはどうすればよいでしょうか。
どうもありがとうございます!
ベスト、ダーシー
発行元とアドレスが消えたのは、私が引用したパッケージのせいかどうかはわかりませんので、すべてのパッケージをここにコピーして貼り付けます。
%% LyX 2.1.3 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\RequirePackage{fix-cm}
\documentclass[12pt,english]{article}
\usepackage{booktabs}
\usepackage{xcolor}
% \definecolor{blue-green}{rgb}{0.0, 0.87, 0.87}
% \definecolor{bleudefrance}{rgb}{0.19, 0.55, 0.91}
% \definecolor{com}{rgb}{0, 0, 1} % com short for comment
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage[letterpaper]{geometry}
\geometry{verbose,tmargin=1.5in,bmargin=1.5in,lmargin=1in,rmargin=1in}
\synctex=-1
\usepackage{color}
\usepackage{babel}
%\usepackage{dvipost}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{esint}
\usepackage[bottom]{footmisc}
\usepackage[table,x11names]{xcolor}
\usepackage{tabularx, array}
\usepackage{float}
% \usepackage[spanish]{babel}
% \usepackage[demo]{graphicx}
% \usepackage{multicol, latexsym, amsmath, amssymb}
% \usepackage{blindtext}
% \usepackage{subcaption}
% \usepackage{caption}
% \usepackage{tabu}
% \usepackage{booktabs}% for better rules in the table
% \usepackage{anysize} % Soporte para el comando \marginsize
% \usepackage{hyperref}
% \setlength\parindent{0pt}
% \spanishdecimal{.}
\usepackage{fmtcount} % displaying latex counters
\usepackage{caption}
\usepackage{subcaption}
\renewcommand{\thesubfigure}{\Alph{subfigure}}
\usepackage[authoryear]{natbib}
\onehalfspacing
\usepackage[unicode=true,pdfusetitle, bookmarks=true,bookmarksnumbered=true,bookmarksopen=false,
breaklinks=true,pdfborder={0 0 1},backref=false,colorlinks=false]
{hyperref}
\usepackage{breakurl}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
%% Change tracking with dvipost
% \dvipostlayout
% \dvipost{osstart color push Red}
% \dvipost{osend color pop}
% \dvipost{cbstart color push Blue}
% \dvipost{cbend color pop}
\DeclareRobustCommand{\lyxadded}[3]{\changestart#3\changeend}
\DeclareRobustCommand{\lyxdeleted}[3]{%
\changestart\overstrikeon#3\overstrikeoff\changeend}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\usepackage{enumitem} % customizable list environments
\newlength{\lyxlabelwidth} % auxiliary length
\theoremstyle{plain}
\newtheorem{lem}{\protect\lemmaname}
\theoremstyle{remark}
\newtheorem{rem}{\protect\remarkname}
\theoremstyle{plain}
\newtheorem{prop}{\protect\propositionname}
\@ifundefined{date}{}{\date{}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\parskip = 0.25cm
\usepackage{lmodern}
%\usepackage{subdepth}
\DeclareMathSizes{12}{11}{8}{7} % \scriptsize is 8 pt
% The following makes the remark boldface not italic
\newtheoremstyle{remark}
{}{}{}{}{\bfseries}{.}{.5em}{{\thmname{#1 }}{\thmnumber{#2}}{\thmnote{ (#3)}}}
\theoremstyle{remark}
% The following makes the proofs boldface and not italic
\renewenvironment{proof}[1][\proofname]{{\bfseries #1.}}
\setlength{\bibsep}{1.25mm}
\AtBeginDocument{
\def\labelitemii{\(\triangleright\)}
\def\labelitemiii{\(\circ\)}
}
\makeatother
\providecommand{\lemmaname}{Lemma}
\providecommand{\propositionname}{Proposition}
\providecommand{\remarkname}{Remark}
答え1
(OP からさらに情報を受け取った後、この回答を更新しました)
% Citations: 2,998
エントリに「コメント」が存在すると、young_1958
次の BibTeX エラー メッセージが生成されます。
You're missing a field name---line 8 of file mybib.bib
: year = "1958",
: % Citations: 2,998
I'm skipping whatever remains of this entry
Warning--missing publisher in young_1958
(There was 1 error message)
(ここでは、mybib.bib
コードをテストするために作成したスクラッチ bib ファイルの名前を示します。)
一般的な提案: BibTeX の実行中に何か問題が発生したと思われる場合は、.blg (「BibTeX ログ」の略だと思います) ファイルを確認することをお勧めします。言い換えると、BibTeX のエラー メッセージを無視すると、危険にさらされることになります。
この「コメント」を省略すると、すべてが期待どおりに動作します。
\documentclass{article}
\begin{filecontents}[overwrite]{mybib.bib}
@book{young_1958,
author = "Michael Young",
title = "The Rise of the Meritocracy",
year = "1958",
publisher = "Thames and Hudson",
address = "London"
}
\end{filecontents}
\usepackage{natbib}
\bibliographystyle{ecta}
\begin{document}
\citet{young_1958}
\bibliography{mybib}
\end{document}