magazine作为参考文献的格式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了magazine作为参考文献的格式相关的知识,希望对你有一定的参考价值。

参考技术A 杂志及报章文章类型(Magazine & Newspaper Articles)

格式:

作者的姓,首字母要大写。(出版日期)。文章标题。期刊名称,卷号(如果有发行号的话),包括页数。

注意:不要用引号括住标题。在标题后面加上句号。如果期刊包含卷号,请斜体显示,然后给出没有“pp.”的页面范围(以常规类型)。如果期刊不使用卷号,如在报纸上,使用p.或pp.作为页码。

注意:与其他期刊不同的是,p.或pp.在APA格式的报纸引用中,位于页码之前。
参考技术B magazine作为参考文献属于期刊。
参考文献(即引文出处)的类型以单字母方式标识,具体如下:
M———专著C——论文集N——报纸文章
丁——期刊文章D——学位论文R——报告

html Smashing Magazine的延迟字体加载逻辑。 http://www.smashingmagazine.com/

<script type="text/javascript">
    (function () {
      "use strict";
      // once cached, the css file is stored on the client forever unless
      // the URL below is changed. Any change will invalidate the cache
      var css_href = './index_files/web-fonts.css';
      // a simple event handler wrapper
      function on(el, ev, callback) {
        if (el.addEventListener) {
          el.addEventListener(ev, callback, false);
        } else if (el.attachEvent) {
          el.attachEvent("on" + ev, callback);
        }
      }
      
      // if we have the fonts in localStorage or if we've cached them using the native batrowser cache
      if ((window.localStorage && localStorage.font_css_cache) || document.cookie.indexOf('font_css_cache') > -1){
        // just use the cached version
        injectFontsStylesheet();
      } else {
       // otherwise, don't block the loading of the page; wait until it's done.
        on(window, "load", injectFontsStylesheet);
      }
      
      // quick way to determine whether a css file has been cached locally
      function fileIsCached(href) {
        return window.localStorage && localStorage.font_css_cache && (localStorage.font_css_cache_file === href);
      }

      // time to get the actual css file
      function injectFontsStylesheet() {
       // if this is an older browser
        if (!window.localStorage || !window.XMLHttpRequest) {
          var stylesheet = document.createElement('link');
          stylesheet.href = css_href;
          stylesheet.rel = 'stylesheet';
          stylesheet.type = 'text/css';
          document.getElementsByTagName('head')[0].appendChild(stylesheet);
          // just use the native browser cache
          // this requires a good expires header on the server
          document.cookie = "font_css_cache";
        
        // if this isn't an old browser
        } else {
           // use the cached version if we already have it
          if (fileIsCached(css_href)) {
            injectRawStyle(localStorage.font_css_cache);
          // otherwise, load it with ajax
          } else {
            var xhr = new XMLHttpRequest();
            xhr.open("GET", css_href, true);
            // cater for IE8 which does not support addEventListener or attachEvent on XMLHttpRequest
            xhr.onreadystatechange = function () {
              if (xhr.readyState === 4) {
                // once we have the content, quickly inject the css rules
                injectRawStyle(xhr.responseText);
                // and cache the text content for further use
                // notice that this overwrites anything that might have already been previously cached
                localStorage.font_css_cache = xhr.responseText;
                localStorage.font_css_cache_file = css_href;
              }
            };
            xhr.send();
          }
        }
      }

      // this is the simple utitily that injects the cached or loaded css text
      function injectRawStyle(text) {
        var style = document.createElement('style');
        // cater for IE8 which doesn't support style.innerHTML
        style.setAttribute("type", "text/css");
        if (style.styleSheet) {
            style.styleSheet.cssText = text;
        } else {
            style.innerHTML = text;
        }
        document.getElementsByTagName('head')[0].appendChild(style);
      }

    }());
</script>

以上是关于magazine作为参考文献的格式的主要内容,如果未能解决你的问题,请参考以下文章

参考文献相关概念

我想看的书籍参考

LeetCode 383. 赎金信

WPS如何在论文设置参考文献格式

paper与magazine的区别?

参考文献在论文中的格式如何写?