BBCode:Tutorial

BBCode
BBCode - Tutorial - List of BBCodes - AoPS Font

The Basics

BBCode is a way to format text in forum posts. It is in some ways similar to HTML. It uses tags, which are little pieces of code enclosed in brackets, such as [b] to make bold text. For every tag, you need a closing tag too. The closing tag is the same as the opening tag except that it has a / symbol at the front. For example, the tag [/b] is code for "stop making the text bold." There is text between the opening and closing tags, that is the text that is modified by the tags.

For example, If you want to say "I love pizza" and want the word "love" to be in bold, you would type

I [b]love[/b] pizza.

This would create, "I love pizza."

Below are some of the most commonly used BBCode tags around AoPS forums. For a comprehensive list of all BBCode tags, see List of BBCode tags

Writing Messages in the AoPS Community

The Buttons

Post a reply.PNG

This is a picture of what you see when you create a topic or post a reply. On very small screens (such as a smartphone) these buttons will not appear, so you will have to type the BBCode in manually.

The Bold Button

The Bold button.jpeg button is for bold tags. When you click on it, your screen should look like this:

Clicked on bold button.PNG

These are called bold tags. Then, you can type in any text you want: Type in bold text.PNG

When you submit it, it should look like this: Submitted Bold Text.PNG

The Italics Button

The Italics button.jpeg button is the italics button. When you click on it, your screen should look like this:

Clicked on italics button.jpeg

Then you can type in your italicized message:

Italics message.jpeg

When you submit, it should look like this:

Italics result.jpeg

The Underline Button

The Underline button.jpeg button is for underlining text. When you click on it, the symbols [u] and [/u] appear. Then you can type in whatever you want to be underlined:

Underline typing.jpeg

When you submit it, it should look like this:

Underline result.jpeg

Note: you can also highlight text and then click the underline button.

The Quote Button

The Quote button.jpeg button is for quoting text. You can write an anonymous quote, or quote a specific user or person. When you click on it, you get [quote] and [/quote]. Then type in the quote:

Typing generic quote.jpeg

When you hit submit, it looks like this:

Published generic quote.jpeg

Or, alternatively, you can say who quoted it:

Specific quote typing.jpeg

And you get this:

Specific quote published.jpeg

You can also quote a post by clicking this button in the forum.

Arrow to quote button.jpeg

You will be taken to a reply page that looks like this:

Specific quote typing.jpeg

The Size Button

The button with the three T's is for controlling the font size. You can click on either "Too Small", "Small", "Medium", "Large", or "Too Large" depending on what size you want. After you click on one of them, you should get something like [size=75] and [/size].

The Hide Button

The Hide button.jpeg button embeds text in a little interactive clicky. This is useful if you want your text only visible if the reader wants to see it. For example, if you are answering a math problem, you can hide the text so that you don't give away the answer to someone who doesn't want to know it.

Start by clicking the hide button. You should get [hide] and [/hide]. Then put in your text:

Type hide generic.jpeg

When you submit, you get this:

Click for hidden text.jpeg

If you click on the words "Hidden Text", you get this:

Open hidden text.jpeg

Or you can label your hidden text. First, write in the code of the hidden text something like:

[hide=answer]Because 6x=y, and y is 6, then x must be 1.[/hide]


And then submit, you get:

Labeled closed hidden text.jpeg

Published open hidden text.jpeg

The Code Button

The Code button.JPEG button is for posting code that you don't want to be rendered, ie LaTeX or BBCode. When you click on it, your screen should display:

[code][/code]

Type in your code:

[code]$10+9=21$[/code]

And it should display:

Code submitted.JPEG

Notice that the LaTeX code is not rendered; that is, it does not show up as $10+9=21$.

If you want a specific color of code do [ code language ][/ code language ] such as [js][/js].

Another way for posting stuff that you don't want to be rendered, is the [verbatim][/verbatim] tags (not implemented on the top BBCode bar in the forums). There will be no grey box that there is when using [code][/code], and it will not automatically be placed on its own line.

The Image Button

The Image Button.JPEG button is for embedding images in posts. If you have this image:
http://artofproblemsolving.com/assets/images/logo-ludicrous.gif
And you want it to show up like this:

AoPS loading.GIF

You use [img] tags. Click on the Image Button.JPEG button and your screen should show:

[img][/img]

Now insert the link to the image. Make sure it is a direct link.

[img]http://artofproblemsolving.com/assets/images/logo-ludicrous.gif[/img]

When you submit, you should get the image!

The URL Button

The Link Button.PNG button is for parsing and naming URLs. If you click it, your screen should look like this:

[url][/url]

Now type in your URL:

[url]http://www.aops.com/[/url]

When you submit it, it should be parsed, like this:

http://www.aops.com/

Alternatively, if you want a link that goes somewhere but is not actually named the URL, do this:


[url=http://www.aops.com/] Click here.[/url]

You get

Click here.

Other Tags

There are other things you can do with BBCode that do not have buttons in the AoPS community.


Unordered List

An unordered list is a simple bullet point list. To use it, you simply use the [list] tag. Before each new list item, type [*]. The [*] tag is for a list item. You don't need a closing tag for the [*] tag. For example, typing

[list]
[*] pizza
[*] pasta
[*] rice
[*] cereal
[/list]

creates:

  • pizza
  • pasta
  • rice
  • cereal

Ordered List

The BBcode for the following uses the [list] tag. To tell you want a numbered list, type [list=1]. For example, typing,

Top 10 most important people of all time:
[list=1]
[*]GMAAS
[*]Gauss
[*]Hilbert
[*]Leibniz
[*]Cantor
[*]Rusczyk
[*]Patrick
[*]Newton
[*]Washington
[*]Edison
[/list]

creates

Top 10 most important people of all time:
  1. GMAAS
  2. Gauss
  3. Hilbert
  4. Leibniz
  5. Cantor
  6. Rusczyk
  7. Patrick
  8. Newton
  9. Washington
  10. Edison

Alternatively, if you want to make a lettered list, start with [list=A] or [list=a]. For a roman numeral list, use [list=i] or [list=I].

Python Tags

If you are taking an AoPS programming with a Python class, you may need to post some Python code in the class forum. To do this you use the [python] tags. These tags are like the [code] tags except that they show the python code in colors. For example, typing

[python]
print("hello"+" world")
print("Hello, world!")
[/python]

Yields

Python tags.PNG

If you want to have a Python renderer in a post in a forum, you can use [pywindow] tags. For example, typing

[pywindow]
print("Hello World!")
[/pywindow]

yields a code box that can be run and edited.

AoPS Font

Main article: AoPS font

Say you want to type the Y symbol on a forum post. You can use the [aops][/aops] tags to create symbols like this. For example, typing

[aops]Y[/aops]

makes the Y symbol. For a guide to how to type other symbols, see the AoPS font page.

Lines

If you wish to have a line that spans the entire width of the page, you can use the [rule] tag. For example, try typing

[rule]

in The Test Forum. Should you not wish to use BBCode, you can use 5 or more dashes instead.

Strike Through

The Strike Through tag looks like this:

    Tags:
  1. Strike Through.jpg
  2. Content:

  3. Strike Through2.jpg
  4. Result:

  5. Strike Through3.jpg

This is how to strikethrough.

Math

The Math tag looks like this:

    Tags:
  1. Math BBCode tag.png
  2. Content:

  3. Math BBCode tag 2.png
  4. Result:

  5. Math BBCode tag 3.png

Tip Tag

The tip tag is basically a hide tag, except it displays the embedded text when you hover over it. To use it, use [tip]This is the text![/tip], and replace the text inside the tip with whatever you want. When you submit you get this: Tip-tag.png

When you hover: Tip-tag-hover.png

You can name tip tags with this code: [tip=Tip Title]content[/tip]