biblatexのamsplainスタイルが使いたい

biblatexのamsplainスタイルが使いたい

- mathema の投稿
返信数: 2
Cloud Latexを使っていて

\documentclass[titlepage]{article}

\setcounter{secnumdepth}{4}
\usepackage[utf8]{inputenc}

\newcommand{\maru}[1]{\ooalign{
\hfil\resizebox{.8\width}{\height}{#1}\hfil
\crcr
\raise.1ex\hbox{\large$\bigcirc$}}}%encircle
\usepackage{fancybox}%about frame
\usepackage{luatexja}%japanese
\usepackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{cd}%tikzcd
\usetikzlibrary{decorations.pathmorphing}
\usepackage{xcolor}
\usepackage{graphics}%reverse
%$\usepackage[margin=15mm]{geometry}%Make margin small
\usepackage{graphicx}%about scalebox
\usepackage{amsmath,amsfonts,amsthm,amssymb,amscd,ascmac}%in order to higher formula and mathfrak and so on.
\usepackage{latexsym, mathtools}%arrow
\usepackage{textcomp}%※
\usepackage{bussproofs}%prooftree
\usepackage{pifont}
\usepackage{subfigure}
\usepackage{lscape}%%revolve
\usepackage{stmaryrd}%bracket
\usepackage{cancel}%diagonal line on a letter
\usepackage{comment}
\usepackage{mathrsfs}%花文字(スクリプトフォント)
\usepackage{hyperref}
\usepackage{here}%\figure[H]でその場に出力
\usepackage{caption}
\captionsetup[figure]{labelsep=space}%figureの後ろの:をなくす


\theoremstyle{definition}
\newtheorem{dfn}{定義}[subsection]
\newtheorem{prop}[dfn]{命題}
\newtheorem{lem}[dfn]{補題}
\newtheorem{thm}[dfn]{定理}
\newtheorem{cor}[dfn]{系}
\newtheorem{rem}[dfn]{注意}
\newtheorem{fact}[dfn]{事実}
\newtheorem{exa}[dfn]{例}
\renewcommand{\qedsymbol}{$\blacksquare$}

\newcommand{\red}[1]{\textcolor{red}{#1}}
\renewcommand{\figurename}{図}

\renewcommand{\baselinestretch}{1.3}%Leave a space between lines

%\renewcommand{\refname}{参考文献}%英語のクラスでthebilbliograpyのコマンドでReferenceと出るところを参考文献に変える

%\usepackage{fancyhdr}

%\pagestyle{fancy}
%\rhead{\thepage}%
\parindent = 0pt%no indent

\usepackage[%
backend = biber,
bibstyle = amsplain,
]{biblatex}
%
\nocite{*}
\addbibresource{bib_name.bib}

\begin{document}

\printbibliography

\end{document}

の入力に対して

/usr/local/texlive/2022/texmf-dist/tex/latex/biblatex/biblatex.sty
line 16179
! Package biblatex Error: Style 'amsplain' not found.
\RequireBibliographyStyle{\blx@bbxfile}

/usr/local/texlive/2022/texmf-dist/tex/latex/biblatex/biblatex.sty
line 16179
! Emergency stop.
...
\RequireBibliographyStyle{\blx@bbxfile}

https://texwiki.texjp.org/?TeX%20%E3%81%AE%E3%82%A8%E3%83%A9%E3%83%BC%E3%83%A1%E3%83%83%E3%82%BB%E3%83%BC%E3%82%B8#s9ac5238

! ==> Fatal error occurred, no output PDF file produced!

このようなエラーが出てきてしまいます。

よろしければご教授お願いします。
mathema への返信

Re: biblatexのamsplainスタイルが使いたい

- 和田 勇 の投稿

Table of Contents

  1. amsplain は \usepackage{biblatex}のオプションとして使用できない
  2. amsplain の利用方法

amsplain は \usepackage{biblatex}のオプションとして使用できない

エラーメッセージ「Package biblatex Error: Style 'amsplain' not found」 をそのまま検索すると以下のようなものが見つかりbiblatex は amsplain オ プションを利用できないようです。

bibtex - How use amsplain style with biblatex? - TeX - LaTeX Stack Exchange

なお biber をお望みのようですが、この制限により \usepackage{biblatex} の併用不可故 .bcf ファイルは生成されず、それを必要とする biber はエラーになります。

amsplain の利用方法

  • 参考にした利用手順
  • 概略コーディング

    \documentclass{article}
    
    \begin{document}
    
    ... \cite{refer} ....
    
    \bibliographystyle{amsplain}
    \bibliography{sampleBibFile}% 「sampleBibFile.bib」を用意
    \end{document}
    
  • 検証に使用した .tex bib_name.bib 及び .pdf を添付しますので参考にしてください