在Beamer中使用\ footcite {}在幻灯片中复制相同的引文

时间:2019-06-07 14:38:03

标签: latex citations footnotes

我正在使用课堂投影仪来准备科学演示。使用\ addbibresource {}包含了myrefernces.bib。在一张幻灯片中,一次使用\ footcite {}引用一次。相同的引用出现在幻灯片的底部两次,编号也不同。如何避免这种情况并使引文在幻灯片中以及在整个演示过程中以相同的编号出现,以避免混淆。

谢谢。

1 个答案:

答案 0 :(得分:0)

手动解决方法:

app.controller("mainController", ["$scope", "getWeatherJSON", function mainController($scope, getWeatherJSON) {
        $scope.cityName = "Rio de Janeiro";
        getWeatherJSON($scope.cityName).then(function (data) {
            const weatherData = data.data;
            console.log(weatherData)
        })
    }])