fix math
This commit is contained in:
parent
f17db7862b
commit
0f7a39f9a5
@ -9,8 +9,7 @@ RUN bundle config --global frozen 1
|
||||
ENV LANG C.UTF-8
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
COPY Gemfile /usr/src/app/
|
||||
COPY Gemfile.lock /usr/src/app/
|
||||
COPY Gemfile Gemfile.lock /usr/src/app/
|
||||
RUN bundle install
|
||||
|
||||
COPY . /usr/src/app
|
||||
COPY . /usr/src/app
|
||||
|
1
Gemfile
1
Gemfile
@ -1,4 +1,3 @@
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem 'github-pages', group: :jekyll_plugins # workaround https://github.com/github/pages-gem#usage
|
||||
gem 'jekyll-redirect-from'
|
@ -81,7 +81,7 @@ GEM
|
||||
octokit (~> 4.0)
|
||||
public_suffix (~> 2.0)
|
||||
typhoeus (~> 1.3)
|
||||
html-pipeline (2.8.3)
|
||||
html-pipeline (2.8.4)
|
||||
activesupport (>= 2)
|
||||
nokogiri (>= 1.4)
|
||||
http_parser.rb (0.6.0)
|
||||
|
@ -23,7 +23,11 @@ twitter:
|
||||
github:
|
||||
username: uetchy
|
||||
logo: "/images/icon.png"
|
||||
highlighter:
|
||||
highlighter: none
|
||||
markdown: kramdown
|
||||
kramdown:
|
||||
syntax_highlighter_opts:
|
||||
disable : true
|
||||
excerpt_separator: "#"
|
||||
google_analytics: UA-28919359-12
|
||||
plugins:
|
||||
@ -32,7 +36,6 @@ plugins:
|
||||
- jekyll-seo-tag
|
||||
- jekyll-feed
|
||||
- jemoji
|
||||
- jekyll-redirect-from
|
||||
include:
|
||||
- _pages
|
||||
exclude:
|
||||
|
@ -30,4 +30,17 @@
|
||||
|
||||
<!-- Styles -->
|
||||
<link rel="stylesheet" href="{{ site.baseurl }}/css/index.css">
|
||||
</head>
|
||||
|
||||
<!-- MathJax -->
|
||||
<script type="text/x-mathjax-config">
|
||||
MathJax.Hub.Config({
|
||||
tex2jax: {
|
||||
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
|
||||
processEscapes: true
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML' async></script>
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
@ -22,18 +22,3 @@ layout: default
|
||||
</div>
|
||||
</article>
|
||||
</section>
|
||||
|
||||
<!-- MathJax -->
|
||||
<script type="text/x-mathjax-config">
|
||||
MathJax.Hub.Config({
|
||||
tex2jax: {
|
||||
inlineMath: [['$','$'], ['\\(','\\)']],
|
||||
displayMath: [['$$','$$'], ['\[','\]']],
|
||||
processEscapes: false,
|
||||
processEnvironments: false,
|
||||
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'a']
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-AMS_SVG">
|
||||
</script>
|
@ -8,8 +8,8 @@ $m\times n$の複素行列の転置を取り、複素共軛をとった$n\times
|
||||
$$
|
||||
\begin{align}
|
||||
A &=\begin{pmatrix} 1 & -1-i \\ 1+i & i \end{pmatrix} \\
|
||||
A^_ &=\begin{pmatrix} 1 & 1-i \\ -1+i & -i \end{pmatrix} \\
|
||||
A^_ &= \bar{A}^T
|
||||
A^{\_} &=\begin{pmatrix} 1 & 1-i \\ -1+i & -i \end{pmatrix} \\
|
||||
A^{\_} &= \bar{A}^T
|
||||
\end{align}
|
||||
$$
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user